38 lines
501 B
INI
Executable file
38 lines
501 B
INI
Executable file
# editorconfig.org
|
|
|
|
root = true
|
|
|
|
[*]
|
|
# Unix style files
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
|
|
[*.sh]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
[*.json]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[*.html]
|
|
indent_style = tab
|
|
|
|
[*.css]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[*.js]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
[*.eslintrc]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
[*.{md,markdown}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
trim_trailing_whitespace = false
|