-
Notifications
You must be signed in to change notification settings - Fork 554
/
mypy.ini
54 lines (37 loc) · 877 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[mypy]
disallow_untyped_defs = False
allow_redefinition = True
[mypy-napalm.base.*]
disallow_untyped_defs = True
[mypy-napalm.nxos.*]
disallow_untyped_defs = True
[mypy-napalm.eos.*]
ignore_errors = True
[mypy-napalm.ios.*]
ignore_errors = True
[mypy-napalm.iosxr_netconf.*]
ignore_errors = True
[mypy-napalm.nxapi_plumbing.*]
disallow_untyped_defs = True
[mypy-napalm.base.clitools.*]
ignore_errors = True
[mypy-napalm.base.test.*]
ignore_errors = True
[mypy-netaddr.*]
ignore_missing_imports = True
[mypy-netmiko.*]
ignore_missing_imports = True
[mypy-jnpr.*]
ignore_missing_imports = True
[mypy-pyeapi.*]
ignore_missing_imports = True
[mypy-lxml.*]
ignore_missing_imports = True
[mypy-netutils.*]
ignore_missing_imports = True
[mypy-textfsm]
ignore_missing_imports = True
[mypy-ttp]
ignore_missing_imports = True
[mypy-pytest]
ignore_missing_imports = True