27 lines
491 B
INI
27 lines
491 B
INI
# EditorConfig is a cross-editor configuration file
|
|
# that helps to unify code styles for multiple
|
|
# developers collaborative projects.
|
|
# See more at https://editorconfig.org/
|
|
|
|
root = true
|
|
|
|
[*]
|
|
indent_style = space
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
|
|
[*.{c,cc,cxx,cpp,cu,cuh,h,hpp,hxx,kps,yml,yaml}]
|
|
indent_size = 2
|
|
|
|
[*.{py,pyi,java,r,toml}]
|
|
indent_size = 4
|
|
|
|
[Dockerfile.*]
|
|
indent_size = 4
|
|
|
|
[*.go]
|
|
indent_style = tab
|
|
indent_size = 4
|