-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprek.toml
More file actions
15 lines (14 loc) · 748 Bytes
/
Copy pathprek.toml
File metadata and controls
15 lines (14 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
default_install_hook_types = ["pre-commit", "commit-msg", "post-commit"]
[[repos]]
repo = "local"
hooks = [
{ id = "vp-staged", name = "Vite+ staged checks", language = "system", entry = "/Users/tim/.vite-plus/bin/vp staged", stages = [
"pre-commit",
], pass_filenames = false },
{ id = "commit-msg", name = "commitlint", language = "system", entry = "/Users/tim/.bun/bin/bun .prek/hooks/commit-msg.ts", stages = [
"commit-msg",
], pass_filenames = true },
{ id = "post-commit-release-metadata", name = "regenerate release metadata when package topology changes", language = "system", entry = "/Users/tim/.bun/bin/bun .prek/hooks/post-commit.ts", stages = [
"post-commit",
], pass_filenames = false, always_run = true },
]