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 8118a76 commit 874fa92Copy full SHA for 874fa92
.pre-commit-config.yaml
@@ -22,3 +22,11 @@ repos:
22
hooks:
23
- id: ruff
24
args: ["--fix", "--show-fixes"]
25
+
26
+ - repo: https://github.com/pre-commit/mirrors-mypy
27
+ rev: "v1.4.1"
28
+ hooks:
29
+ - id: mypy
30
+ files: ^(src)
31
+ additional_dependencies:
32
+ - Click
pyproject.toml
@@ -121,3 +121,12 @@ testpaths = ["tests"]
121
122
[tool.coverage]
123
run.source = ["src"]
124
125
+[tool.mypy]
126
+strict = true
127
+files = ["src"]
128
+python_version = "3.9"
129
+warn_unused_configs = true
130
+show_error_codes = true
131
+disallow_untyped_defs = false
132
+follow_imports = "normal"
0 commit comments