-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy path.pre-commit-config.yaml
49 lines (49 loc) · 1.5 KB
/
.pre-commit-config.yaml
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
# 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: poetry run ruff check --force-exclude --fix --exit-non-zero-on-fix
language: python
files: \.(py|pyi)$
- id: ruff-format
name: ruff format
entry: poetry run ruff format --force-exclude
language: python
files: \.(py|pyi)$
- id: pyproject.toml
name: pyproject.toml
entry: poetry run python bin/pyproject_toml_linter.py
language: python
additional_dependencies: [tomlkit]
- id: mypy
name: mypy-local
entry: poetry run mypy
language: python
types: [python]
exclude: ^examples/|^truss/test.+/|model.py$|^truss-chains/.*|^smoketests/.*
pass_filenames: true
- id: mypy
name: mypy-local (3.9)
entry: poetry run mypy
language: python
types: [python]
files: ^truss-chains/.*|^smoketests/.*
args:
- --python-version=3.9
pass_filenames: true