Cleanup config.nodes_of
[check_mk.git] / mypy.ini
blobb910d6141782446b6eb181090b3aef2560dae070
1 [mypy]
2 python_version = 2.7
3 strict_optional = True
4 follow_imports = silent
6 # Used by cmk_base/data_sources/impi.py - not able to make this visible easily
7 # Disabling checking this external module for the moment to be able to enable
8 # checking our code.
9 [mypy-pyghmi.*]
10 ignore_missing_imports = True
12 # Used by cmk_base/data_sources/tcp.py. Same as above.
13 [mypy-Cryptodome.*]
14 ignore_missing_imports = True
16 # Used by cmk_base/cee/rrd.py. Same as above
17 [mypy-rrdtool.*]
18 ignore_missing_imports = True
20 # Used by cmk_base/cee/inline_snmp.py. Same as above
21 [mypy-netsnmp.*]
22 ignore_missing_imports = True