-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
38 lines (33 loc) · 969 Bytes
/
.pre-commit-config.yaml
File metadata and controls
38 lines (33 loc) · 969 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
36
37
38
repos:
- repo: local
hooks:
- id: format-check
name: Format code check
entry: docker compose exec -T app make format-check
language: system
always_run: true
pass_filenames: false
- id: lint
name: Run all linters
entry: docker compose exec -T app make lint
language: system
always_run: true
pass_filenames: false
- id: static-type-check
name: Static type checker
entry: docker compose exec -T app make static-type-check
language: system
always_run: true
pass_filenames: false
- id: test
name: Run tests
entry: docker compose exec -T app make test
language: system
always_run: true
pass_filenames: false
- id: test-e2e
name: Run tests e2e
entry: docker compose exec -T app make test-e2e
language: system
always_run: true
pass_filenames: false