12 lines
264 B
INI
12 lines
264 B
INI
[flake8]
|
|
ignore =
|
|
# long lines
|
|
E501,
|
|
# deprecated rule: https://www.flake8rules.com/rules/W503.html
|
|
W503,
|
|
# conflict with black on PEP8 interpretation
|
|
E203,
|
|
# class attribute is shadowing a python builtin
|
|
A003,
|
|
|
|
max-complexity = 10
|