forked from pivotal-sprout/sprout-wrap
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
56 lines (55 loc) · 1.4 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
50
51
52
53
54
55
56
ci:
autofix_prs: true
autoupdate_schedule: weekly
submodules: true
skip:
- shell-lint # Not installed on pre-commit.ci
exclude: |
(?x)^(
Gemfile\.lock|
Brewfile\.lock\.json|
Cheffile\.lock|
vendor/bundle/.*|
tmp/.*|
cookbooks/.*|
nodes/.*
)$
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks.git
rev: v1.1.1
hooks:
- id: check-added-large-files
- id: check-merge-conflict
- id: check-symlinks
- id: check-yaml
exclude: \.kitchen\.libvirt\.ssh\.yml
- id: end-of-file-fixer
- id: trailing-whitespace
exclude: .*\.patch
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.30.0
hooks:
- id: markdownlint
- repo: https://github.com/detailyang/pre-commit-shell.git
rev: 1.0.2
hooks:
- id: shell-lint
args: ["--exclude=SC1090,SC1091,SC2034,SC2039,SC2140,SC2148,SC2153,SC2154,SC2164"]
exclude: |
(?x)^(
vendor/bundle/.*|
tmp/.*|
cookbooks/.*
)$
- repo: local
hooks:
- id: bad-patterns
name: Check for bad patterns in Hook files
entry: ./bin/pre-commit/bad-patterns.sh
language: system
exclude: ^\.git/hooks/.*\.sample
files: |
(?x)^(
\.git/hooks/.*|
hooks/.*
)$