-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
56 lines (50 loc) · 1.34 KB
/
Copy path.pre-commit-config.yaml
File metadata and controls
56 lines (50 loc) · 1.34 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
49
50
51
52
53
54
55
56
default_stages: [pre-commit]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
stages: [pre-commit]
- id: end-of-file-fixer
stages: [pre-commit]
- id: check-added-large-files
stages: [pre-commit]
- id: check-merge-conflict
stages: [pre-commit]
- repo: local
hooks:
- id: fmt-check
name: fmt check
entry: just fmt-check
language: system
pass_filenames: false
always_run: true
stages: [pre-commit]
- id: guardrails-staged
name: guardrails staged
entry: just guardrails-staged
language: system
pass_filenames: false
always_run: true
stages: [pre-commit]
- id: ci-check
name: ci-check
entry: just ci-check
language: system
pass_filenames: false
always_run: true
stages: [pre-push]
- id: deps-check
name: dependency checks
entry: just deps-check
language: system
pass_filenames: false
always_run: true
stages: [pre-push]
- id: nix-build-check
name: nix build package set
entry: just nix-build
language: system
pass_filenames: false
always_run: true
stages: [pre-push]