-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
51 lines (44 loc) · 1.05 KB
/
.pre-commit-config.yaml
File metadata and controls
51 lines (44 loc) · 1.05 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
fail_fast: true
exclude: |
(?x)^(
.*/(snapshots)/.*|
)$
repos:
- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.24.1
hooks:
- id: validate-pyproject
- repo: https://github.com/crate-ci/typos
rev: v1.42.3
hooks:
- id: typos
- repo: local
hooks:
- id: rustfmt
name: rustfmt
entry: rustfmt
language: system
types: [rust]
- repo: local
hooks:
- id: cargo-dev-generate-all
name: cargo dev generate-all
entry: cargo dev generate-all
language: system
types: [rust]
pass_filenames: false
files: ^crates/(uv-cli|uv-settings)/
- repo: local
hooks:
- id: prettier
name: prettier
entry: prettier --write --ignore-unknown
language: node
additional_dependencies: ["prettier@3"]
types_or: [yaml, json5]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.14
hooks:
- id: ruff-format
- id: ruff
args: [--fix, --exit-non-zero-on-fix]