-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
43 lines (41 loc) · 1.13 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
exclude: .*drawio$
- id: mixed-line-ending
args: [--fix, lf]
- id: check-yaml
args: [--allow-multiple-documents]
additional_dependencies: [ruamel.yaml, ruamel_yaml]
- id: check-toml
- id: check-json
- id: pretty-format-json
args: [--autofix]
- id: check-added-large-files
- id: check-case-conflict
- id: check-merge-conflict
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-vcs-permalinks
- id: debug-statements
- id: detect-private-key
- id: forbid-new-submodules
- repo: https://github.com/jackdewinter/pymarkdown
rev: v0.9.25
hooks:
- id: pymarkdown
additional_dependencies: [wcwidth, pyyaml]
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.14.0
hooks:
- id: pretty-format-yaml
args: [--autofix, --indent, '2']
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.30.0
hooks:
- id: check-renovate
additional_dependencies: [json5]
- id: check-github-actions