-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathprek.toml
More file actions
44 lines (39 loc) · 990 Bytes
/
prek.toml
File metadata and controls
44 lines (39 loc) · 990 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
34
35
36
37
38
39
40
41
42
43
44
[[repos]]
repo = "builtin"
hooks = [
{ id = "check-added-large-files", exclude = "^uv.lock$" },
{
id = "check-yaml",
exclude = "^helm/blueapi/templates",
args = ["--allow-multiple-documents"]
},
{ id = "check-merge-conflict" },
{ id = "end-of-file-fixer" }
]
[[repos]]
repo = "https://github.com/astral-sh/ruff-pre-commit"
rev = "v0.15.1"
hooks = [
{ id = "ruff-check", args = ["--fix"] },
{ id = "ruff-format" },
]
[[repos]]
repo = "https://github.com/astral-sh/uv-pre-commit"
rev = "0.10.2"
hooks = [
{ id = "uv-sync", args = [] },
]
[[repos]]
repo = "https://github.com/norwoodj/helm-docs"
rev = "v1.14.2"
hooks = [{ id = "helm-docs-built", args = ["--chart-search-root=helm"] }]
[[repos]]
repo = "https://github.com/losisin/helm-values-schema-json"
rev = "v2.3.1"
hooks = [
{ id = "helm-schema", args = ["--config", "helm/blueapi/.schema.yaml"] }
]
[[repos]]
repo = "https://github.com/gitleaks/gitleaks"
rev = "v8.28.0"
hooks = [{ id = "gitleaks" }]