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

14 lines
376 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
format = %(path)s:%(row)d:%(col)d: %(code)s %(text)s https://lintlyci.github.io/Flake8Rules/rules/%(code)s.html