2023-06-06 16:49:15 -05:00
|
|
|
# EditorConfig standardizes spacing in all editors: https://EditorConfig.org
|
|
|
|
|
# Please get a plugin for your editor to match the formatting
|
|
|
|
|
|
|
|
|
|
# top-most EditorConfig file
|
|
|
|
|
root = true
|
|
|
|
|
|
2023-08-01 06:20:12 -05:00
|
|
|
[*.py]
|
|
|
|
|
indent_style = space
|
2023-06-06 16:49:15 -05:00
|
|
|
|
|
|
|
|
# Matches multiple files with brace expansion notation
|
|
|
|
|
# Set default charset
|
|
|
|
|
[*.{c,cc,cpp,h,hh,hpp}]
|
|
|
|
|
charset = utf-8
|
|
|
|
|
indent_style = space
|
|
|
|
|
indent_size = 2
|
2024-01-19 02:45:37 -06:00
|
|
|
max_line_length = 100
|