.editorconfig 300 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
root = true

[*]
indent_style = space
indent_size = 4
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true

[*.py]
12
max_line_length = 120
13

14
15
16
[*.{js,jsx,ts,tsx,md,mdx,css}]
indent_size = 2

17
[*.{yml,yaml,json}]
18
19
indent_size = 2

20
21
[{*.mk,Makefile}]
indent_style = tab