2022-07-06 16:34:48 -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
|
|
|
|
|
|
|
|
|
|
# Matches multiple files with brace expansion notation
|
|
|
|
|
# Set default charset
|
|
|
|
|
[*.{c,cc,cpp,h,hh,hpp}]
|
|
|
|
|
charset = utf-8
|
|
|
|
|
indent_style = space
|
2023-12-04 15:24:34 -06:00
|
|
|
indent_size = 2
|
2023-09-06 10:20:43 -05:00
|
|
|
|
|
|
|
|
[*.py]
|
|
|
|
|
indent_style = space
|
|
|
|
|
indent_size = 4
|
2023-06-07 19:46:35 -05:00
|
|
|
|
|
|
|
|
[*.proto]
|
|
|
|
|
charset = utf-8
|
|
|
|
|
indent_style = space
|
|
|
|
|
indent_size = 2
|
|
|
|
|
|