-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.pre-commit-hooks.yaml
More file actions
35 lines (32 loc) · 1.08 KB
/
Copy path.pre-commit-hooks.yaml
File metadata and controls
35 lines (32 loc) · 1.08 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
- id: deployproof
name: DeployProof Verification Gate
description: Deterministic quality & security gate for Python codebases that catches what coverage misses.
entry: deployproof check
language: python
types: [python]
require_serial: true
stages: [pre-commit, pre-push, manual]
- id: deployproof-check
name: DeployProof Check (Alias)
description: Deterministic quality & security gate for Python codebases that catches what coverage misses.
entry: deployproof check
language: python
types: [python]
require_serial: true
stages: [pre-commit, pre-push, manual]
- id: deployproof-full
name: DeployProof Full Repo Scan
description: Full-repository deterministic quality and security verification gate.
entry: deployproof check --full-repo
language: python
types: [python]
require_serial: true
stages: [pre-push, manual]
- id: deployproof-fast
name: DeployProof Fast Pre-Check
description: Ultra-fast scoped pre-check on modified files only.
entry: deployproof check
language: python
types: [python]
require_serial: true
stages: [pre-commit, manual]