-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathsetup.cfg
29 lines (24 loc) · 757 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[metadata]
description_file = README.md
[flake8]
ignore = E402,E501,W503,W504,E731,E741
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,.vscode
[pycodestyle]
max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules
[mypy]
python_version = 3.7
check_untyped_defs = True
ignore_missing_imports = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
plugins = mypy_django_plugin.main
[mypy-*.migrations.*]
# Django migrations should not produce any errors:
ignore_errors = True
[codespell]
skip = *.po,,*/static,*.png,*.jpg,*.jpeg,*.svg,*.ico,*.zip,*.pdf,*.egg-info,*/build
ignore-words-list=delink,mimicing,beforeall,afterall,ninjs,womens
count =
quiet-level = 3