Improve .editorconfig

- added root spec to prevent editorconfig from recursing to ancestor of
  project root
- constrain formatting to .c and .h files
- tested with Visual Studio Code 1.67.2
This commit is contained in:
Phil Heller 2022-09-30 11:18:23 -06:00
parent bae92488e9
commit cdd61a9873

View file

@ -1,2 +1,5 @@
indent_style = tab
indent_size = 4
root = true
[*.{c,h}]
indent_size = 4
indent_style = space