mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-10 19:57:09 +03:00
17fa459dc3
* Fix inconsistent line length and move config to pyproject.toml Fix #2720 * Fix running tox with AUTOFIXABLE_STYLES * Adjust some styles * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Adjust more styles * Split isort and flake8 tests --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
11 lines
379 B
INI
11 lines
379 B
INI
# flake8 and pycodestyle don't support pyproject.toml
|
|
# https://github.com/PyCQA/flake8/issues/234
|
|
# https://github.com/PyCQA/pycodestyle/issues/813
|
|
[flake8]
|
|
max-line-length = 119
|
|
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv,.venv
|
|
|
|
[pycodestyle]
|
|
max-line-length = 119
|
|
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv,.venv
|