-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
48 lines (48 loc) · 1.57 KB
/
.pre-commit-config.yaml
File metadata and controls
48 lines (48 loc) · 1.57 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
# Check & fix all locally: `pre-commit run --files $(git diff --name-only HEAD)`.
fail_fast: false
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-added-large-files
args: ["--maxkb=500"]
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: fix-byte-order-marker
- id: check-case-conflict
- id: check-merge-conflict
- id: check-symlinks
- id: debug-statements
- repo: local
hooks:
- id: ruff
name: ruff analyze and fix
entry: uv run ruff check --force-exclude --fix --exit-non-zero-on-fix
# NB(nikhil): `uv` requires system over python (here and below) due to assumptions pre-commit makes about venvs.
language: system
files: \.(py|pyi)$
- id: ruff-format
name: ruff format
entry: uv run ruff format --force-exclude
language: system
files: \.(py|pyi)$
- id: mypy
name: mypy-local
entry: uv run mypy
language: system
types: [python]
exclude: ^examples/|^truss/test.+/|model.py$
pass_filenames: true
- id: uv-lock
name: uv lock
entry: uv lock
language: system
files: ^(pyproject\.toml|uv\.lock)$
pass_filenames: false
- id: check-truss-config-schema
name: check truss config schema is up to date
entry: uv run bin/generate_truss_config_schema.py --check
language: system
files: (truss/base/|truss/config\.schema\.json$)
pass_filenames: false