forked from microsoft/Qcodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypy.ini
56 lines (40 loc) · 1.39 KB
/
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
55
56
[mypy]
strict_optional = True
disallow_untyped_decorators = True
ignore_missing_imports = True
show_column_numbers = True
warn_unused_ignores = True
warn_unused_configs = True
warn_redundant_casts = True
[mypy-qcodes._version]
ignore_errors = True
[mypy-qcodes.instrument.*]
disallow_untyped_defs = True
[mypy-qcodes.instrument.mockers.ami430]
disallow_untyped_defs = False
[mypy-qcodes.dataset.*]
disallow_untyped_defs = True
[mypy-qcodes.logger.*]
disallow_untyped_defs = True
[mypy-qcodes.monitor.*]
disallow_untyped_defs = True
[mypy-qcodes.station]
disallow_untyped_defs = True
[mypy-qcodes.config.*]
disallow_untyped_defs = True
[mypy-qcodes.instrument_drivers.Keysight.private.Keysight_344xxA_submodules]
disallow_untyped_defs = True
[mypy-qcodes.instrument_drivers.Keysight.Keysight_34410A_submodules.*]
disallow_untyped_defs = True
[mypy-qcodes.instrument_drivers.Keysight.Keysight_34460A_submodules.*]
disallow_untyped_defs = True
[mypy-qcodes.instrument_drivers.Keysight.Keysight_34461A_submodules.*]
disallow_untyped_defs = True
[mypy-qcodes.instrument_drivers.Keysight.Keysight_34465A_submodules.*]
disallow_untyped_defs = True
[mypy-qcodes.instrument_drivers.Keysight.Keysight_34470A_submodules.*]
disallow_untyped_defs = True
[mypy-qcodes.instrument_drivers.Keysight.Keysight_34480A_submodules.*]
disallow_untyped_defs = True
[mypy-qcodes.interactive_widget.*]
disallow_untyped_defs = True