-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
49 lines (44 loc) · 1.17 KB
/
.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
39
40
41
42
43
44
45
46
47
48
49
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-added-large-files
- id: mixed-line-ending
- id: check-executables-have-shebangs
- repo: https://github.com/govuk-one-login/pre-commit-hooks.git
rev: 0.0.1
hooks:
- id: terraform-format
- id: terraform-validate
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
- id: shellcheck
- repo: https://github.com/rhysd/actionlint
rev: v1.7.1
hooks:
- id: actionlint
- repo: https://github.com/lalten/check-gha-pinning
rev: v1.3.0
hooks:
- id: check-gha-pinning
- repo: local
hooks:
- id: eslint
name: Run ESLint
language: node
types_or:
- javascript
- ts
entry: yarn run eslint --fix
pass_filenames: true
- id: prettier
name: Run prettier
language: node
types: [text]
stages: [commit]
entry: prettier --write --ignore-unknown
additional_dependencies: ["prettier@^3.3.2"]
pass_filenames: true