mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 04:07:48 +03:00
4cdfea3977
* add compatibility options for black and flake8 * remove flake8 args option --------- Co-authored-by: 성민우 <minwoo@seongmin-uui-MacBookPro.local>
12 lines
400 B
INI
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
|