Skip to content

Commit 04f7db5

Browse files
committed
fix: remove mypy from pre-commit, add pre-commit make target
1 parent 759ffa1 commit 04f7db5

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

.pre-commit-config.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,6 @@ repos:
55
- id: ruff
66
- id: ruff-format
77

8-
- repo: https://github.com/pre-commit/mirrors-mypy
9-
rev: v1.11.0
10-
hooks:
11-
- id: mypy
12-
args: [--strict]
13-
148
- repo: https://github.com/pre-commit/pre-commit-hooks
159
rev: v4.5.0
1610
hooks:

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,7 @@ test:
1515

1616
ci: lint format typecheck test
1717

18-
.PHONY: install lint format typecheck test ci
18+
pre-commit:
19+
poetry run pre-commit run --all-files
20+
21+
.PHONY: install lint format typecheck test ci pre-commit

0 commit comments

Comments
 (0)