-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.mypy.ini
More file actions
122 lines (82 loc) · 2.61 KB
/
.mypy.ini
File metadata and controls
122 lines (82 loc) · 2.61 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[mypy]
# Global mypy configuration
[mypy-nodescraper.base.regexanalyzer]
ignore_errors = True
[mypy-nodescraper.cli.cli]
ignore_errors = True
[mypy-nodescraper.cli.dynamicparserbuilder]
ignore_errors = True
[mypy-nodescraper.cli.helper]
ignore_errors = True
[mypy-nodescraper.cli.inputargtypes]
ignore_errors = True
[mypy-nodescraper.configbuilder]
ignore_errors = True
[mypy-nodescraper.configregistry]
ignore_errors = True
[mypy-nodescraper.enums.eventpriority]
ignore_errors = True
[mypy-nodescraper.enums.systeminteraction]
ignore_errors = True
[mypy-nodescraper.interfaces.connectionmanager]
ignore_errors = True
[mypy-nodescraper.interfaces.datacollectortask]
ignore_errors = True
[mypy-nodescraper.interfaces.dataplugin]
ignore_errors = True
[mypy-nodescraper.interfaces.task]
ignore_errors = True
[mypy-nodescraper.models.analyzerargs]
ignore_errors = True
[mypy-nodescraper.models.datamodel]
ignore_errors = True
[mypy-nodescraper.pluginexecutor]
ignore_errors = True
[mypy-nodescraper.plugins.inband.bios.analyzer_args]
ignore_errors = True
[mypy-nodescraper.plugins.inband.cmdline.cmdline_analyzer]
ignore_errors = True
[mypy-nodescraper.plugins.inband.dimm.dimm_collector]
ignore_errors = True
[mypy-nodescraper.plugins.inband.dkms.analyzer_args]
ignore_errors = True
[mypy-nodescraper.plugins.inband.dmesg.dmesg_analyzer]
ignore_errors = True
[mypy-nodescraper.plugins.inband.dmesg.dmesgdata]
ignore_errors = True
[mypy-nodescraper.plugins.inband.memory.memory_collector]
ignore_errors = True
[mypy-nodescraper.plugins.inband.os.os_collector]
ignore_errors = True
[mypy-nodescraper.plugins.inband.package.analyzer_args]
ignore_errors = True
[mypy-nodescraper.plugins.inband.process.analyzer_args]
ignore_errors = True
[mypy-nodescraper.plugins.inband.process.process_collector]
ignore_errors = True
[mypy-nodescraper.plugins.inband.rocm.rocm_plugin]
ignore_errors = True
[mypy-nodescraper.taskresulthooks.filesystemloghook]
ignore_errors = True
[mypy-nodescraper.typeutils]
ignore_errors = True
[mypy-nodescraper.utils]
ignore_errors = True
[mypy-test.unit.conftest]
ignore_errors = True
[mypy-test.unit.framework.common.shared_utils]
ignore_errors = True
[mypy-test.unit.framework.test_cli_helper]
ignore_errors = True
[mypy-test.unit.framework.test_dataplugin]
ignore_errors = True
[mypy-test.unit.framework.test_plugin_executor]
ignore_errors = True
[mypy-nodescraper.models.collectorargs]
ignore_errors = True
[mypy-nodescraper.plugins.inband.kernel_module.*]
ignore_errors = True
[mypy-nodescraper.plugins.inband.nvme.nvme_collector]
ignore_errors = True
[mypy-test.unit.framework.test_cli]
ignore_errors = True