forked from XAITK/xaitk-saliency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.mypy.ini
38 lines (27 loc) · 956 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
###############################################################################
# Global Options
[mypy]
# Files/Directories to investigate.
files = xaitk_saliency, tests
# Disable caching
incremental = False
# Disallows defining functions without type annotations or with incomplete type
# annotations.
disallow_untyped_defs = True
###############################################################################
# Options for different parts of XAITK-Saliency
;[mypy-xaitk_saliency.*]
;[mypy-tests.*]
###############################################################################
# TPL-module options
# Should only include exclusions for non-optional dependencies. Modules that
# utilize optional dependencies should `type: ignore` within their module
# scope.
[mypy-pytest]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-skimage.*]
ignore_missing_imports = True
[mypy-sklearn.*]
ignore_missing_imports = True