-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
52 lines (39 loc) · 912 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[flake8]
ignore=F405,W503
max-line-length = 140
exclude =
__pycache__,
migrations,
trionyx/quickstart/*
[pydocstyle]
add-ignore=D205,D400
match = (?!test_)(?!\d{4}_).*\.py
match-dir = (?!\.)(?!quickstart).*
[mypy]
files = trionyx
plugins =
mypy_django_plugin.main
exclude = trionyx/quickstart/*
[mypy.plugins.django-stubs]
django_settings_module = app.settings
; remove this when whole trionyx has types
[mypy-trionyx.*]
ignore_missing_imports = True
[mypy-celery.*]
ignore_missing_imports = True
[mypy-kombu.*]
ignore_missing_imports = True
[mypy-debug_toolbar.*]
ignore_missing_imports = True
[mypy-crispy_forms.*]
ignore_missing_imports = True
[mypy-rest_framework.*]
ignore_missing_imports = True
[mypy-watson.*]
ignore_missing_imports = True
[mypy-jsonfield.*]
ignore_missing_imports = True
[mypy-babel.*]
ignore_missing_imports = True
[mypy-PIL.*]
ignore_missing_imports = True