-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
69 lines (69 loc) · 2.24 KB
/
.pre-commit-config.yaml
File metadata and controls
69 lines (69 loc) · 2.24 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
57
58
59
60
61
62
63
64
65
66
67
68
69
repos:
- repo: local
hooks:
- id: runtime-clean
name: runtime-clean
entry: node scripts/quality/clean-runtime-artifacts.mjs
language: system
pass_filenames: false
stages: [pre-commit, manual]
- id: gitleaks-staged
name: gitleaks-staged
entry: node scripts/quality/run-gitleaks.mjs staged
language: system
pass_filenames: false
stages: [pre-commit]
- id: git-secrets-staged
name: git-secrets-staged
entry: node scripts/quality/run-git-secrets-scan.mjs staged
language: system
pass_filenames: false
stages: [pre-commit]
- id: root-allowlist
name: root-allowlist
entry: node scripts/quality/check-root-allowlist.mjs
language: system
pass_filenames: false
stages: [pre-commit, manual]
- id: host-safety-guard
name: host-safety-guard
entry: node scripts/quality/verify-host-safety.mjs
language: system
pass_filenames: false
stages: [pre-commit, manual]
- id: sensitive-surface-guard
name: sensitive-surface-guard
entry: node scripts/quality/verify-sensitive-surface.mjs
language: system
pass_filenames: false
stages: [pre-commit, manual]
- id: anti-placebo
name: anti-placebo
entry: node scripts/quality/anti-placebo-scan.mjs
language: system
pass_filenames: false
stages: [pre-commit, manual]
- id: brand-guard
name: brand-guard
entry: node scripts/quality/check-branding.mjs
language: system
pass_filenames: false
stages: [pre-commit, manual]
- id: gitleaks-current
name: gitleaks-current
entry: node scripts/quality/run-gitleaks.mjs current
language: system
pass_filenames: false
stages: [manual]
- id: git-secrets-current
name: git-secrets-current
entry: node scripts/quality/run-git-secrets-scan.mjs current
language: system
pass_filenames: false
stages: [manual]
- id: push-gate
name: push-gate
entry: npm run test:pre-push
language: system
pass_filenames: false
stages: [pre-push]