Skip to content

Commit 8641e29

Browse files
committed
feat: update pre-commit configuration to use ruff for linting and ty for type checking
1 parent 039b908 commit 8641e29

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ repos:
1414
types: [python]
1515
- id: flake8
1616
name: flake8
17-
entry: poetry run flake8
17+
entry: poetry run ruff check
18+
language: system
19+
types: [ python ]
20+
- id: typecheck
21+
name: typecheck
22+
entry: poetry run ty check src/
1823
language: system
1924
types: [ python ]
20-
- repo: https://github.com/pycqa/isort
21-
rev: 5.11.5
22-
hooks:
23-
- id: isort
24-
name: isort (python)

0 commit comments

Comments
 (0)