-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.flake8
More file actions
33 lines (32 loc) · 762 Bytes
/
Copy path.flake8
File metadata and controls
33 lines (32 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[flake8]
max-complexity = 10
max-line-length = 160
exclude =
.venv
main.py
match_leagues.py
ignore =
E203,
# whitespace before ':', конфликтует с black
E266,
# too many leading '#' for block comment
E501,
# line too long (handled by max-line-length)
W503,
# line break before binary operator (black style)
E302,
# expected 2 blank lines
E305,
# expected 2 blank lines after class or function
E303,
# too many blank lines
E701,
# multiple statements on one line (colon)
E222,
# multiple spaces after operator
W291,
# trailing whitespace
W292,
# no newline at end of file
E402,
# module level import not at top of file