-
-
Notifications
You must be signed in to change notification settings - Fork 270
Expand file tree
/
Copy pathmypy.ini
More file actions
29 lines (24 loc) · 599 Bytes
/
mypy.ini
File metadata and controls
29 lines (24 loc) · 599 Bytes
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
[mypy]
python_version = 3.8
check_untyped_defs = True
implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_unreachable = True
mypy_path =
:$MYPY_CONFIG_FILE_DIR/../
:$MYPY_CONFIG_FILE_DIR/../jsonschema/all
:$MYPY_CONFIG_FILE_DIR/stubs/
sqlite_cache = True
exclude = ['docs/']
[mypy-Default]
ignore_missing_imports = True
[mypy-unittesting]
ignore_missing_imports = True
[mypy-package_control.*]
ignore_missing_imports = True
[mypy-SublimeLinter.vendor.*]
ignore_errors = True
ignore_missing_imports = True
[mypy-SublimeLinter.tests.*]
ignore_errors = True