-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
78 lines (71 loc) · 1.79 KB
/
.pre-commit-config.yaml
File metadata and controls
78 lines (71 loc) · 1.79 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
default_language_version:
node: 24.15.0
golang: 1.23.6
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-added-large-files
- id: mixed-line-ending
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
- id: shellcheck
- repo: https://github.com/aws-cloudformation/cfn-lint
rev: v1.21.0
hooks:
- id: cfn-lint
exclude: ^(ci|.github)/.*|docker-compose.*|.pre-commit-config.yaml$
files: template\.ya?ml$
- repo: local
hooks:
- id: eslint
name: Run ESLint
language: node
types_or:
- javascript
- ts
entry: npm run lint
pass_filenames: true
- id: prettier
name: Run prettier
language: node
types_or:
- ts
- javascript
- json
- yaml
- markdown
stages:
- pre-commit
entry: npm run pretty --write --ignore-unknown
pass_filenames: true
- repo: https://github.com/lalten/check-gha-pinning
rev: v1.3.0
hooks:
- id: check-gha-pinning
- repo: local
hooks:
- id: check-package-json
name: check-package-json
entry: scripts/lint-package-json.sh
files: ^package.json$
types:
- file
language: system
pass_filenames: false
- repo: https://github.com/rhysd/actionlint
rev: v1.7.4
hooks:
- id: actionlint
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.6
hooks:
- id: ruff
args:
- "--fix"
- id: ruff-format