Skip to content

Commit ceb4660

Browse files
committed
ci: move mypy config to pyproject.toml
1 parent 4cac357 commit ceb4660

File tree

2 files changed

+28
-22
lines changed

2 files changed

+28
-22
lines changed

.mypy.ini

Lines changed: 0 additions & 22 deletions
This file was deleted.

pyproject.toml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,34 @@ version = { attr = "cve_bin_tool.version.VERSION" }
118118
[tool.isort]
119119
profile = "black"
120120

121+
[[tool.mypy.overrides]]
122+
module = "cvss.*"
123+
ignore_missing_imports = true
124+
125+
[[tool.mypy.overrides]]
126+
module = "defusedxml.*"
127+
ignore_missing_imports = true
128+
129+
[[tool.mypy.overrides]]
130+
module = "pdftotext.*"
131+
ignore_missing_imports = true
132+
133+
[[tool.mypy.overrides]]
134+
module = "plotly.*"
135+
ignore_missing_imports = true
136+
137+
[[tool.mypy.overrides]]
138+
module = "reportlab.*"
139+
ignore_missing_imports = true
140+
141+
[[tool.mypy.overrides]]
142+
module = "rpmfile.*"
143+
ignore_missing_imports = true
144+
145+
[[tool.mypy.overrides]]
146+
module = "zstandard.*"
147+
ignore_missing_imports = true
148+
121149
[tool.pytest.ini_options]
122150
asyncio_mode = "strict"
123151
asyncio_default_fixture_loop_scope = "function"

0 commit comments

Comments
 (0)