-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.pre-commit-config.yaml
68 lines (68 loc) · 1.71 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: local
hooks:
- id: pytest-check
name: pytest-check
entry: make test
language: system
pass_filenames: false
always_run: true
- id: generate-openapi-server
name: Generate OpenAPI Server
entry: make generate-openapi-server
language: system
pass_filenames: false
always_run: true
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.8.0
hooks:
# Run the linter.
- id: ruff
# Run the formatter.
- id: ruff-format
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
exclude: |
(?x)^(
openapi_server/.*|
tests/test_*.py
)$
- id: end-of-file-fixer
exclude: |
(?x)^(
openapi_server/.*|
tests/test_.*.py
)$
-
id: check-yaml
exclude: tests/testfiles
- id: check-added-large-files
exclude: |
(?x)^(
uv.lock
)$
-
id: name-tests-test
args: [--pytest-test-first]
exclude: |
(?x)^(
tests/cassandra/insert.py|
tests/tagstore/insert.py|
tests/txs_pagesize_tester.py|
tests/txs_pagesize_tests.py
)$
-
id: debug-statements
exclude: postmortemdebug.py
- id: check-docstring-first
- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.5.6
hooks:
# Update the uv lockfile
- id: uv-lock