We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd3291c commit 37a08adCopy full SHA for 37a08ad
1 file changed
pyproject.toml
@@ -189,3 +189,11 @@ disable = ["R0801"]
189
[tool.ruff]
190
[tool.ruff.lint.flake8-tidy-imports]
191
banned-api = { "unittest" = { msg = "use pytest instead of unittest" }, "unittest.mock" = { msg = "use pytest-mock instead of unittest.mock" } }
192
+
193
+[tool.mypy]
194
+explicit_package_bases = true
195
+disallow_untyped_calls = true
196
+disallow_untyped_defs = true
197
+disallow_incomplete_defs = true
198
+ignore_missing_imports = true
199
+disable_error_code = "attr-defined"
0 commit comments