forked from chilli-axe/mpc-autofill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mypy.ini
38 lines (33 loc) · 961 Bytes
/
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
[mypy]
mypy_path = ./MPCAutofill:./desktop-tool
python_version = 3.9
check_untyped_defs = True
disallow_untyped_defs = True
disallow_any_generics = True
disallow_untyped_calls = True
disallow_untyped_decorators = True
ignore_errors = False
ignore_missing_imports = True
implicit_reexport = False
strict_optional = True
strict_equality = True
no_implicit_optional = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
warn_unreachable = True
warn_no_return = True
plugins = mypy_django_plugin.main
exclude = MPCAutofill/cardpicker/tests/|desktop-tool/tests/|venv|env|.venv|.env
[mypy.plugins.django-stubs]
django_settings_module = MPCAutofill.settings
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-webdriver_manager.*]
ignore_missing_imports = True
[mypy-tests.*]
disallow_untyped_defs = False
disallow_incomplete_defs = False
[mypy-cardpicker.tests.*]
disallow_untyped_defs = False
disallow_incomplete_defs = False