mealie/.flake8
2021-08-07 16:58:58 -08:00

10 lines
192 B
INI

[flake8]
ignore = [
E501 # Line Length - See Black Config in pyproject.toml
E402 # Import Not at Top of File
]
exclude = _all_models.py
per-file-ignores =
__init__.py:F403,F401