Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e623c3c

Browse files
committedJun 16, 2020
Adds .pre-commit-config.yaml
1 parent 08a1b35 commit e623c3c

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
 

‎.pre-commit-config.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
repos:
3+
4+
- repo: https://github.com/pre-commit/pre-commit-hooks
5+
rev: v3.1.0
6+
hooks:
7+
- id: check-added-large-files
8+
- id: check-case-conflict
9+
- id: check-docstring-first
10+
- id: check-executables-have-shebangs
11+
- id: check-json
12+
- id: check-yaml
13+
- id: end-of-file-fixer
14+
- id: sort-simple-yaml
15+
- id: trailing-whitespace
16+
17+
- repo: https://github.com/igorshubovych/markdownlint-cli.git
18+
rev: v0.23.1
19+
hooks:
20+
- id: markdownlint
21+
22+
- repo: https://github.com/adrienverge/yamllint.git
23+
rev: v1.23.0
24+
hooks:
25+
- id: yamllint
26+
args: ["-c", ".yamllint", "-s"]

0 commit comments

Comments
 (0)
Please sign in to comment.