Files
notifications-api/setup.cfg
Katie Smith 64ed50da17 Fix flake8 config
Having the `select` meant that flake8 was only checking the `B901` rule
and ignoring all others.
2021-02-16 09:02:45 +00:00

10 lines
222 B
INI

[tool:pytest]
xfail_strict=true
[flake8]
exclude = venv*,__pycache__,node_modules,cache,migrations,build,sample_cap_xml_documents.py
max-line-length = 120
# W504 line break after binary operator
extend_ignore=B306, W504