-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.pre-commit-config.yaml
41 lines (41 loc) · 1.06 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
exclude: |
(?x)^(
Brewfile\.lock\.json|
tmp/.*
)$
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
- 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)^(
tmp/.*
)$
- 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/.*
)$