1 parent 6ce9c59 commit 8108dddCopy full SHA for 8108ddd
1 file changed
pyproject.toml
@@ -42,6 +42,7 @@ test = [
42
"ruff>=0.5.0,<=0.14.10",
43
"coverage>=7.5.4,<=7.13.1",
44
"pre-commit<=4.5.1",
45
+ "ty<=0.1.0",
46
]
47
48
[build-system]
@@ -67,7 +68,8 @@ format = "ruff format ."
67
68
check-clean-workspace = "git diff --exit-code"
69
ruff-lint = "ruff check . --fix"
70
pylint = "pylint --version && echo 'running pylint...' && pylint $(git ls-files '*.py')"
-lint = { depends-on = ["ruff-lint", "pylint"] }
71
+ty = "ty check"
72
+lint = { depends-on = ["ruff-lint", "pylint", "ty"] }
73
style = { depends-on = ["format", "lint"] }
74
commit-format = "git commit -a -m'autoformat code' || true"
75
test = "pytest"
@@ -83,6 +85,7 @@ ci = { depends-on = [
83
85
"format",
84
86
"ruff-lint",
87
"pylint",
88
+ "ty",
89
"coverage",
90
"coverage-report",
91
] }
0 commit comments