This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/.flake8

13 lines
264 B
Plaintext
Raw Normal View History

[flake8]
ignore =
2021-12-27 22:58:41 +01:00
# long lines
E501,
2021-12-27 22:58:41 +01:00
# deprecated rule: https://www.flake8rules.com/rules/W503.html
W503,
2021-12-27 22:58:41 +01:00
# conflict with black on PEP8 interpretation
E203,
# class attribute is shadowing a python builtin
A003,
2021-12-27 22:58:41 +01:00
max-complexity = 10