summaryrefslogtreecommitdiff
path: root/.editorconfig
blob: 9fe123447873f3be023e6914d6d5497ae7b70c01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
root = true

[*.py]
max_line_length = 100
indent_style = space
indent_size = 4
known_first_party = isort
known_third_party = kate
ignore_frosted_errors = E103
skip = build,.tox,venv
balanced_wrapping = true
not_skip = __init__.py

[*.{rst,ini}]
indent_style = space
indent_size = 4

[*.yml]
indent_style = space
indent_size = 2