cookiecutter-django/{{cookiecutter.project_slug}}/setup.cfg

22 lines
515 B
INI
Raw Normal View History

[flake8]
max-line-length = 120
2015-09-24 10:33:33 +03:00
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules
2015-09-26 10:47:44 +03:00
[pycodestyle]
2015-09-26 10:47:44 +03:00
max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules
2018-07-02 10:22:48 +03:00
[mypy]
python_version = 3.6
check_untyped_defs = True
ignore_errors = False
ignore_missing_imports = True
strict_optional = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
[mypy-*.migrations.*]
# Django migrations should not produce any errors:
ignore_errors = True