-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
60 lines (50 loc) · 1.34 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[flake8]
ignore =
# E501: Line too long
E501
# W503: line break before binary operator (superseded by W504 line break after binary operator)
W503
# W605: invalid escape sequence, breaks regex
W605
# S101: Use of assert detected.
S101
max-line-length = 88
extend-ignore = E203
exclude = .tox,.git,node_modules,venv,.venv,**/templates/**,**/migrations/**
[isort]
profile = black
known_first_party = django_vue_experiments
default_section = THIRDPARTY
skip=migrations,project_template,node_modules,.git,__pycache__,venv,.venv,.tox
[mypy]
strict = True
check_untyped_defs = True
warn_unreachable = True
pretty = True
show_column_numbers = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
plugins =
mypy_django_plugin.main
disallow_subclassing_any = False
[mypy.plugins.django-stubs]
django_settings_module = django_vue_experiments.settings
[mypy-environ]
ignore_missing_imports = true
[mypy-*.migrations.*]
# Django migrations should not produce any errors
ignore_errors = True
[mypy-tests.factories]
# factory-boy does not support typing yet
ignore_errors = True
[mypy-queryset_sequence]
ignore_missing_imports = true
[mypy-rest_framework.*]
ignore_missing_imports = true
[coverage:run]
branch = true
source = django_vue_experiments
omit = *migrations*
[coverage:report]
show_missing = true