-
Notifications
You must be signed in to change notification settings - Fork 10
/
.pre-commit-config.yaml
42 lines (38 loc) · 1.01 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
---
default_language_version:
python: python3
node: "16.19.1"
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: trailing-whitespace
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v4.0.0-alpha.5
hooks:
- id: prettier
stages: [commit]
# - repo: https://github.com/jorisroovers/gitlint
# rev: v0.19.1
# hooks:
# - id: gitlint
# additional_dependencies: ["./gitlint-core[trusted-deps]"]
# entry: gitlint
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.33.0
hooks:
- id: yamllint
exclude: >
(?x)^(
packer/provision/local-docker.yaml
)$
- repo: https://github.com/jumanjihouse/pre-commit-hooks
rev: 3.0.0
hooks:
- id: shellcheck
exclude: >
(?x)^(
jenkins-config/global-vars-production.sh|
jenkins-config/global-vars-sandbox.sh|
packer/provision/local-docker.yaml
)$