forked from ahmdigital/evergreen-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
38 lines (38 loc) · 930 Bytes
/
.pre-commit-config.yaml
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: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
args: ['--unsafe']
- id: detect-private-key
- id: check-case-conflict
- id: check-executables-have-shebangs
- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.64.1
hooks:
- id: terraform_fmt
- id: terraform_validate
- repo: local
hooks:
- id: type-check
name: type-check
language: node
entry: npm run type-check
pass_filenames: false
- repo: local
hooks:
- id: lint
name: lint
language: node
entry: npm run lint
pass_filenames: false
verbose: true
- repo: local
hooks:
- id: test
name: test
language: node
entry: npm run test
pass_filenames: false