-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
49 lines (47 loc) · 1.35 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
files: src||tests
repos:
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.41.0
hooks:
- id: markdownlint
# MD013: line length
# MD033: no inline HTML
# MD041: first line in a file should be a top-level heading
args: [--disable, MD013, MD033, MD041, "--"]
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
- id: codespell
stages: [commit, commit-msg]
args:
[
--ignore-words-list,
precessing,
--ignore-words-list,
multline,
--check-filenames,
]
- repo: local
hooks:
- id: no-bracket-links
name: "Brackets should not be inside links [[link]](url) -> [[link](url)]"
entry: '\]\]\('
language: pygrep
types: [markdown]
- id: no-http
name: URLs must use HTTPS
entry: "http:"
language: pygrep
types_or: [markdown, yaml]
exclude: .pre-commit-config.yaml
- id: no-repeated-whitespace
name: No repeated spaces
entry: '\S+\s{2,}'
language: pygrep
types: [text]
exclude: LICENSE
exclude_types: [python, bib, gitignore, jupyter, makefile, rst, yaml]
- repo: https://github.com/gitleaks/gitleaks
rev: v8.18.4
hooks:
- id: gitleaks