Editorconfig : Add per-file configs.

This commit is contained in:
Dmitry Voronin 2024-03-08 22:06:09 +03:00
parent 1028cb2d88
commit 848a332607

View file

@ -1,6 +1,19 @@
[*] [*]
end_of_line = lf end_of_line = lf
charset = utf-8 charset = utf-8
indent_style = tab indent_style = tab
insert_final_newline = true indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true trim_trailing_whitespace = true
[Makefile]
indent_size = 2
[*.{nix,js}]
indent_size = 2
[*.lua]
indent_size = 4
[*.{sh,md}]
indent_size = 8