diff options
author | rtk0c <[email protected]> | 2022-04-19 12:45:06 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-04-19 12:45:06 -0700 |
commit | 6b56f7d75f6b2ef54ea855b6651a2be1307f34c0 (patch) | |
tree | b26f32c0fcc5a2d23716704a0470522d0ee0a4c4 /.editorconfig | |
parent | 5f8b091d84bf6be9b2fa2e485e435e8f43e20b85 (diff) |
Changeset: 14 Add .editorconfig
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ce922ba --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +# http://editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.cmake,CMakeLists.txt] +indent_style = tab + +[*.{h,c,hpp,cpp,inl}] +indent_style = tab + +[*.md] +trim_trailing_whitespace = false |