forked from FX31337/MQL-Compile-Action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
37 lines (33 loc) · 988 Bytes
/
.pre-commit-config.yaml
File metadata and controls
37 lines (33 loc) · 988 Bytes
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
---
repos:
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.26.1
hooks:
- id: yamllint
args: ["-c", ".yamllint", "-s"]
- repo: https://github.com/igorshubovych/markdownlint-cli.git
rev: v0.27.1
hooks:
- id: markdownlint
- repo: https://github.com/jumanjihouse/pre-commit-hooks
rev: 2.1.5
hooks:
- id: forbid-binary
- id: git-check # Configure in .gitattributes
- id: markdownlint # Configure in .mdlrc
- id: require-ascii
exclude: ^dist/.*.js$
- id: script-must-have-extension
- id: shellcheck
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: check-added-large-files
- id: check-byte-order-marker
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
exclude: ^dist/.*.js$