-
Notifications
You must be signed in to change notification settings - Fork 11
/
mypy.ini
71 lines (51 loc) · 1.59 KB
/
mypy.ini
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
61
62
63
64
65
66
67
68
69
70
71
[mypy]
plugins = mypy_django_plugin.main
mypy_path = ./src
[mypy.plugins.django-stubs]
django_settings_module = crkeng.site.settings
[mypy-*.migrations.*]
# Skip checking Django-auto-generated migration code
ignore_errors = True
# External packages that we haven’t set up types for
[mypy-Levenshtein.*]
ignore_missing_imports = True
[mypy-colorama.*]
ignore_missing_imports = True
[mypy-cree_sro_syllabics.*]
ignore_missing_imports = True
[mypy-dawg.*]
ignore_missing_imports = True
[mypy-debug_toolbar.*]
ignore_missing_imports = True
[mypy-gensim.*]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-sortedcontainers.*]
ignore_missing_imports = True
[mypy-django.*]
# https://github.com/typeddjango/django-stubs exists, but attempts to use
# it were fiddly enough that it didn’t seem worth the hassle
#
# https://groups.google.com/g/django-developers/c/C_Phs05kL1Q/discussion
# “Technical Board statement on type hints for Django”, 2020-04-14:
# “It is the view of the Django Technical Board that inline type
# annotations should not be added to Django at the current time … the
# barrier for further inline changes will be high.”
#ignore_missing_imports = True
[mypy-django_js_reverse.*]
ignore_missing_imports = True
[mypy-foma.*]
ignore_missing_imports = True
[mypy-snowballstemmer.*]
ignore_missing_imports = True
[mypy-pytest_django.*]
ignore_missing_imports = True
[mypy-environs.*]
ignore_missing_imports = True
[mypy-secure.*]
ignore_missing_imports = True
[mypy-setuptools.*]
ignore_missing_imports = True
[mypy-tqdm.*]
ignore_missing_imports = True