dotfiles/home/user/.editorconfig
2024-11-21 13:33:55 +03:00

28 lines
368 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
[*.json]
insert_final_newline = true
[*.go]
indent_style = tab