mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-09 13:14:43 +00:00
* add compatibility options for black and flake8 * remove flake8 args option --------- Co-authored-by: 성민우 <minwoo@seongmin-uui-MacBookPro.local>
11 lines
400 B
INI
11 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
|