We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e596407 commit 3539b45Copy full SHA for 3539b45
mypy.ini
pyproject.toml
@@ -36,6 +36,8 @@ dev = [
36
"pytest>=7.4.2",
37
"pytest-mock>=3.14.0",
38
"faker>=26.0.0",
39
+ "mypy>=1.8.0",
40
+ "types-redis>=4.6.0",
41
]
42
43
[build-system]
@@ -100,3 +102,15 @@ filterwarnings = [
100
102
dev = [
101
103
"pytest-asyncio>=1.0.0",
104
105
+
106
+[tool.mypy]
107
+python_version = "3.11"
108
+warn_return_any = true
109
+warn_unused_configs = true
110
+ignore_missing_imports = true
111
+mypy_path = "src"
112
+explicit_package_bases = true
113
114
+[[tool.mypy.overrides]]
115
+module = "src.app.*"
116
+disallow_untyped_defs = true
0 commit comments