dotfiles/home/user/.editorconfig
2024-01-23 19:21:59 +03:00

22 lines
303 B
INI

root = true
[*]
end_of_line = lf
insert_final_newline = false
trim_trailing_whitespace = true
charset = utf-8
indent_style = space
indent_size = 4
tab_width = 4
[*.{cpp,h}]
indent_size = 2
tab_width = 2
[*.py]
insert_final_newline = true
[Makefile]
indent_style = tab
indent_size = tab
tab_width = 4