Files
bugsink/tox.ini
Klaas van Schelven 348c2dc80f tox.ini rule, as per comment
the associated code got removed before checkin, but I still like to ignore this
rule in the future
2025-02-26 16:34:47 +01:00

11 lines
315 B
INI

[flake8]
max-line-length=120
exclude=venv,.venv,sentry/**,bugsink/event_schema.py
extend-ignore=
# E741: ambiguous variable name
E741
# E731: do not assign a lambda expression, use a def; turned off as per https://stackoverflow.com/a/37489941/339144
E731
per-file-ignores =
**/migrations/*:E501