django-helpdesk/.flake8
Martin Whitehouse e863609cbe
Add complexity to flake8 configuration
Set to maximum value 20
2022-07-25 01:17:12 +02:00

13 lines
270 B
INI

[flake8]
max-line-length = 120
exclude = .git,__pycache__,.tox,.eggs,*.egg,node_modules,.venv,migrations,docs,demo,tests,setup.py
import-order-style = pep8
max-complexity = 20
[pycodestyle]
max-line-length = 120
exclude = "migrations"
in-place = true
recursive = true