Blame setup.cfg

Packit Service 6746a6
[flake8]
Packit Service 6746a6
# C0111: docstrings
Packit Service 6746a6
# I0011: locally disabled warnings
Packit Service 6746a6
# R0801: similar lines
Packit Service 6746a6
# R0904: too many public methods
Packit Service 6746a6
# R0911: too many return statements
Packit Service 6746a6
# R0912: too many branches
Packit Service 6746a6
# R0913: too many arguments
Packit Service 6746a6
# R0903: too few public methods
Packit Service 6746a6
# W0141: used builtin 'map' function
Packit Service 6746a6
# W0142: used star magic
Packit Service 6746a6
# W0212: access to a protected member
Packit Service 6746a6
# W0503: line break before binary operator
Packit Service 6746a6
ignore = C0111,I0011,R0801,R0904,R0911,R0912,R0913,R0903,W0141,W0142,W0212,W0503
Packit Service 6746a6
exclude = .git,__pycache__
Packit Service 6746a6
max-line-length = 120