2018-01-23 17:01:58 +03:00
|
|
|
# This file is for unifying the coding style for different editors and IDEs
|
|
|
|
# editorconfig.org
|
|
|
|
|
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
end_of_line = lf
|
|
|
|
charset = utf-8
|
|
|
|
insert_final_newline = true
|
|
|
|
trim_trailing_whitespace = true
|
2021-03-16 21:06:16 +03:00
|
|
|
indent_style = space
|
|
|
|
max_line_length = 90
|
2018-01-23 17:01:58 +03:00
|
|
|
|
|
|
|
[**.py]
|
2021-03-27 01:39:08 +03:00
|
|
|
indent_size = 4
|
2018-01-23 17:01:58 +03:00
|
|
|
|
2021-03-16 21:06:16 +03:00
|
|
|
[**.yaml]
|
|
|
|
indent_size = 2
|
|
|
|
|
|
|
|
[/static/less/**.less]
|
|
|
|
indent_size = 2
|
|
|
|
|
|
|
|
[**.jinja2]
|
2021-04-07 01:00:42 +03:00
|
|
|
indent_size = 2
|