blob: 9af3800b3fd7bd41d64997bc6c39370930695adf [file] [log] [blame]
Peter Pentchevb04da5d2022-08-23 01:02:07 +03001# https://editorconfig.org/
2
3root = true
4
5[*]
6end_of_line = lf
7insert_final_newline = true
8charset = utf-8
9
10[*.md]
11indent_style = space
12indent_size = 2
13
14[*.py]
15indent_style = space
16indent_size = 4
17
18[*.sh]
19indent_style = tab
20tab_size = 8
21
22[*.yaml]
23indent_style = space
24indent_size = 2
25
26[setup.cfg]
27indent_style = space
28indent_size = 4
29
30[tox.ini]
31indent_style = space
32indent_size = 2