2014-08-07 19:10:26 +00:00
|
|
|
[flake8]
|
|
|
|
|
max-line-length = 120
|
2015-09-24 07:33:33 +00:00
|
|
|
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules
|
2015-09-26 07:47:44 +00:00
|
|
|
|
2017-04-29 21:57:23 +00:00
|
|
|
[pycodestyle]
|
2015-09-26 07:47:44 +00:00
|
|
|
max-line-length = 120
|
2018-05-05 09:45:49 +00:00
|
|
|
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules
|
2018-07-02 07:22:48 +00: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
|