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 337c43e commit 98f7cdeCopy full SHA for 98f7cde
.github/workflows/test-lint.yml
@@ -90,5 +90,5 @@ jobs:
90
91
- name: Run lint
92
id: lint
93
- run: hatch run test-lint
+ run: hatch fmt --linter --check
94
continue-on-error: false
.pre-commit-config.yaml
@@ -3,14 +3,14 @@ repos:
3
hooks:
4
- id: hatch-format
5
name: Format code
6
- entry: hatch run test-format
+ entry: hatch fmt --formatter --check
7
language: system
8
pass_filenames: false
9
types: [python]
10
stages: [pre-commit]
11
- id: hatch-lint
12
name: Lint code
13
- entry: hatch run test-lint
+ entry: hatch fmt --linter --check
14
15
16
0 commit comments