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 95431dd commit b095b3dCopy full SHA for b095b3d
1 file changed
pyproject.toml
@@ -72,3 +72,17 @@ filterwarnings = ["error"]
72
testpaths = [
73
"tests",
74
]
75
+
76
+[tool.mypy]
77
+strict=true
78
+warn_unreachable=true
79
+enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
80
81
+[tool.ruff]
82
83
+[tool.ruff.lint]
84
+extend-select = [
85
+ "UP", # pyupgrade
86
+ "I", # isort
87
+ "B", # flake8-bugbear
88
+]
0 commit comments