kemono2/.flake8

19 lines
338 B
Plaintext
Raw Permalink Normal View History

2024-07-04 22:08:17 +02:00
[flake8]
ignore =
# Some template strings can easily go over the limit
E501
# Doesn't work well with __init__.py files
F401
# flake struggles with endpoints returning tuples on exceptions
E722
exclude =
.git,
__pycache__,
venv
max-complexity = 14
[pycodestyle]
max_line_length = 120
ignore =
E501