-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathlefthook.yml
More file actions
33 lines (30 loc) · 796 Bytes
/
lefthook.yml
File metadata and controls
33 lines (30 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
output:
- summary
pre-commit:
jobs:
- name: "Formatting"
group:
jobs:
- name: format
glob: "**/*.py"
exclude:
- "src/futuresearch/generated/**"
run: uv run ruff format {staged_files}
stage_fixed: true
- name: "Linting"
group:
jobs:
- name: lint
glob: "**/*.py"
exclude:
- "src/futuresearch/generated/**"
run: uv run ruff check --fix {staged_files}
stage_fixed: true
- name: "Typechecking"
group:
jobs:
- name: typecheck
glob: "**/*.py"
exclude:
- "src/futuresearch/generated/**"
run: uv run basedpyright --project ./pyproject.toml