-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
29 lines (25 loc) · 725 Bytes
/
Copy path.pre-commit-config.yaml
File metadata and controls
29 lines (25 loc) · 725 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
# Local pre-commit hooks delegate to Make targets so lint/test behavior stays
# aligned with local development and CI-oriented tooling.
repos:
- repo: local
hooks:
- id: make-lint
name: make lint
entry: make lint
language: system
pass_filenames: false
- id: make-test
name: make test
entry: make test
language: system
pass_filenames: false
- id: verify-intro
name: verify IntroProject
entry: make verify_intro
language: system
pass_filenames: false
- id: verify-ci-canary
name: verify CI canary
entry: make verify_ci_canary
language: system
pass_filenames: false