33 lines
500 B
INI
33 lines
500 B
INI
# http://editorconfig.org
|
|
|
|
root = true
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 4
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
|
|
[*.py]
|
|
indent_style = space
|
|
indent_size = 4
|
|
max_line_length = 120
|
|
line_length = 120
|
|
multi_line_output = 3
|
|
default_section = THIRDPARTY
|
|
recursive = true
|
|
skip = venv/
|
|
include_trailing_comma = true
|
|
force_grid_wrap = 0
|
|
use_parentheses = true
|
|
|
|
[{*.json, *.sh}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
|
|
[Makefile]
|
|
indent_style = tab
|