We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b67888 commit d0e274eCopy full SHA for d0e274e
mypy.ini
pyproject.toml
@@ -4,6 +4,19 @@ minversion = "6.0"
4
xfail_strict = true
5
addopts = ["--color=yes"]
6
7
+[tool.mypy]
8
+python_version = "3.10"
9
+no_implicit_optional = false
10
+strict_optional = true
11
+warn_redundant_casts = false
12
+check_untyped_defs = false
13
+disallow_untyped_calls = false
14
+disallow_incomplete_defs = false
15
+disallow_untyped_defs = false
16
+disallow_untyped_decorators = false
17
+ignore_missing_imports = true
18
+warn_unused_ignores = false
19
+
20
[tool.ruff]
21
line-length = 100
22
target-version = "py310"
0 commit comments