-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
35 lines (35 loc) · 898 Bytes
/
Copy path.pre-commit-config.yaml
File metadata and controls
35 lines (35 loc) · 898 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
repos:
- repo: local
hooks:
- id: format
name: Format
entry: make ruff
language: system
require_serial: true
stages: [pre-commit]
- id: test
name: Run Tests
entry: make test
language: system
require_serial: true
pass_filenames: false
stages: [pre-commit]
- id: secrets-scan
name: Secrets Scan
entry: .github/scripts/secret-scan.sh
language: script
require_serial: true
stages: [pre-commit]
- id: setup
name: Setup
entry: make setup
language: system
always_run: true
stages: [post-merge]
- repo: https://github.com/compilerla/conventional-pre-commit
rev: v3.6.0
hooks:
- id: conventional-pre-commit
name: Conventional Commit Check
stages: [commit-msg]
args: []