-
Notifications
You must be signed in to change notification settings - Fork 244
/
.pre-commit-config.yaml
87 lines (78 loc) · 2.24 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-added-large-files
- id: check-case-conflict
- id: check-merge-conflict
#- id: end-of-file-fixer
#- id: trailing-whitespace
#- id: check-json
# We use the Python version instead of the original version which seems to require Docker
# https://github.com/koalaman/shellcheck-precommit
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
- id: shellcheck
name: shellcheck
args: ["--severity=error"]
stages: [manual]
- repo: https://github.com/executablebooks/mdformat
rev: 0.7.18
hooks:
- id: mdformat
args: ["--wrap=120", "--number"]
additional_dependencies:
- mdformat-footnote
- mdformat-frontmatter
- mdformat-gfm
- mdformat-gfm-alerts
- mdformat-mkdocs~=3.0
- repo: local
hooks:
- id: generate-index
name: generate-index
entry: python3 scripts/generate_index.py
language: system
- id: markdown-link-format-check
name: markdown-link-format-check
types: [markdown]
language: system
entry: python3 scripts/check_links.py
- id: markdown-html-check
name: markdown-html-check
types: [markdown]
language: system
entry: python3 scripts/check_md_html.py
- repo: https://github.com/tcort/markdown-link-check
rev: v3.12.2
hooks:
- id: markdown-link-check
args: ["-c", "markdown_link_config.json"]
- repo: https://github.com/rstcheck/rstcheck
rev: v6.2.0
hooks:
- id: rstcheck
additional_dependencies: [sphinx]
args: ["--ignore-languages=c,python,java", "--report-level=error"]
stages: [manual]
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.28.4
hooks:
- id: check-github-workflows
- repo: https://github.com/pre-commit/pygrep-hooks
rev: "v1.10.0"
hooks:
# - id: rst-backticks
- id: rst-directive-colons
- id: rst-inline-touching-normal
- repo: https://github.com/codespell-project/codespell
rev: "v2.3.0"
hooks:
- id: codespell
args: ["-L", "fle,re-use,merchantibility,synching,crate,nin,infinit,te,checkin,aks"]
exclude: |
(?x)^(.*\.rst
)$