22 lines
354 B
INI
22 lines
354 B
INI
# documentation https://editorconfig.org/
|
|
root = true
|
|
|
|
[*]
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
insert_final_newline = true
|
|
max_line_length = 130
|
|
indent_style = space
|
|
trim_trailing_whitespace = true
|
|
tab_width = 2
|
|
indent_size = 2
|
|
|
|
[{*.java,*.js}]
|
|
indent_size = 4
|
|
ij_continuation_indent_size = 4
|
|
|
|
[{*.xml,*.html}]
|
|
indent_size = 4
|
|
|
|
[Makefile]
|
|
indent_style = tab |