mirror of
https://github.com/bugsink/bugsink.git
synced 2025-12-16 18:15:08 -06:00
the associated code got removed before checkin, but I still like to ignore this rule in the future
11 lines
315 B
INI
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
|