-
Notifications
You must be signed in to change notification settings - Fork 125
/
mypy.ini
47 lines (36 loc) · 1.12 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
[mypy]
plugins =
mypy_django_plugin.main,
mypy_drf_plugin.main
[mypy.plugins.django-stubs]
django_settings_module = "config.django.base"
[mypy-config.*]
# Ignore everything related to Django config
ignore_errors = true
[mypy-styleguide_example.*.migrations.*]
# Ignore Django migrations
ignore_errors = true
[mypy-celery.*]
# Remove this when celery stubs are present
ignore_missing_imports = True
[mypy-django_celery_beat.*]
# Remove this when django_celery_beat stubs are present
ignore_missing_imports = True
[mypy-django_filters.*]
# Remove this when django_filters stubs are present
ignore_missing_imports = True
[mypy-factory.*]
# Remove this when factory stubs are present
ignore_missing_imports = True
[mypy-rest_framework_jwt.*]
# Remove this when rest_framework_jwt stubs are present
ignore_missing_imports = True
[mypy-google_auth_oauthlib.*]
# Remove this when google_auth_oauthlib stubs are present
ignore_missing_imports = True
[mypy-oauthlib.*]
# Remove this when oauthlib stubs are present
ignore_missing_imports = True
[mypy-qrcode.*]
# Remove this when qrcode stubs are present
ignore_missing_imports = True