forked from open-schools/open-schools-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
54 lines (40 loc) · 1.18 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
[flake8]
max-line-length = 120
exclude =
.git,
__pycache__,
*/migrations/*
[mypy]
plugins =
mypy_django_plugin.main,
mypy_drf_plugin.main
namespace_packages=True
[mypy.plugins.django-stubs]
django_settings_module = "config.django.base"
[mypy-config.*]
# Ignore everything related to Django config
ignore_errors = true
[mypy-open_schools_platform.*.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-django_phonenumber_field.*]
# Remove this when django_phonenumber_field stubs are present
ignore_missing_imports = True
[mypy-phonenumber_field.*]
# Remove this when django-phonenumber-field stubs are present
ignore_missing_imports = True