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 b7be0cd commit 45c9f89Copy full SHA for 45c9f89
.pre-commit-config.yaml
@@ -23,3 +23,11 @@ repos:
23
- id: flake8
24
args:
25
- --max-line-length=120
26
+
27
+ - repo: https://github.com/pre-commit/mirrors-mypy
28
+ rev: "v1.4.1"
29
+ hooks:
30
+ - id: mypy
31
+ files: ^(src)
32
+ additional_dependencies:
33
+ - Click
pyproject.toml
@@ -70,3 +70,12 @@ testpaths = ["tests"]
70
71
[tool.coverage]
72
run.source = ["src"]
73
74
+[tool.mypy]
75
+strict = true
76
+files = ["src"]
77
+python_version = "3.9"
78
+warn_unused_configs = true
79
+show_error_codes = true
80
+disallow_untyped_defs = false
81
+follow_imports = "normal"
0 commit comments