cookiecutter-django/{{cookiecutter.project_slug}}/setup.cfg
MinWoo Sung 4cdfea3977
add compatibility options for black and flake8 (#4541)
* add compatibility options for black and flake8

* remove flake8 args option

---------

Co-authored-by: 성민우 <minwoo@seongmin-uui-MacBookPro.local>
2023-08-28 11:09:15 +01:00

12 lines
400 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
extend-ignore = E203
[pycodestyle]
max-line-length = 119
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv,.venv