forked from Checkmk/checkmk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mypy-raw.ini
30 lines (25 loc) · 828 Bytes
/
mypy-raw.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
[mypy]
python_version = 2.7
strict_optional = True
follow_imports = silent
# Used by cmk_base/data_sources/impi.py - not able to make this visible easily
# Disabling checking this external module for the moment to be able to enable
# checking our code.
[mypy-pyghmi.*]
ignore_missing_imports = True
# Used by cmk_base/data_sources/tcp.py. Same as above.
[mypy-Cryptodome.*]
ignore_missing_imports = True
# Used by cmk_base/cee/rrd.py. Same as above
[mypy-rrdtool.*]
ignore_missing_imports = True
# Used by cmk_base/cee/inline_snmp.py. Same as above
[mypy-netsnmp.*]
ignore_missing_imports = True
# Disable non CRE module reference checking for Raw Edition repositories
[mypy-cmk_base.cee.*]
ignore_missing_imports = True
[mypy-cmk.gui.cee.*]
ignore_missing_imports = True
[mypy-cmk.gui.cme.*]
ignore_missing_imports = True