1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
[tool:pytest]
norecursedirs=libs doc test/uflacs/crosslanguage/generated
[flake8]
max-line-length = 100
exclude = .git,__pycache__,docs/source/conf.py,build,dist,libs
ignore =
# TODO: Enable these after fixing one by one, these may hide bugs
F403,F405,F812,F999,F401,F841,F821,
# TODO: Some of these may also be important
E501,E203,E265,E701,E702,E703,E302,E402,E122,
E222,E303,E129,E251,E225,E221,E731,E272,
E131,E115,E127,E261,E128,E202,E231,E201,E266,
E301,E262,E401,E124,E227,E126,E121,E704,E502,E241,E123,E226,E741
# TODO: Some of these may also be important
W503,W391,W291,W293,W504
|