Add EditorConfig file

Four-space indents in C++ files; two-space indents in Markdown and YAML.
This commit is contained in:
Chris White 2023-01-14 18:04:30 -05:00
parent 22db720ad5
commit 0acd2b9c88

13
.editorconfig Normal file
View File

@ -0,0 +1,13 @@
root = true
[*]
indent_style = space
[CMakeLists.txt]
indent_size = 4
[*.{c,h}*]
indent_size = 4
[*.{md,yml}]
indent_size = 2