-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy path.pre-commit-config.yaml
78 lines (68 loc) · 1.95 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
ci:
autoupdate_schedule: quarterly
default_stages: [commit]
default_install_hook_types: [pre-commit, commit-msg]
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.7
hooks:
- id: ruff
args:
- --fix
- --select
- ALL
- --ignore
- INP,C408,PTH,TRY003,EM102,COM812
- --target-version
- py312
- id: ruff-format
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-case-conflict
- id: check-symlinks
- id: check-yaml
- id: destroyed-symlinks
- id: end-of-file-fixer
exclude_types: [svg]
- id: forbid-new-submodules
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.42.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, gool, --check-filenames]
- repo: https://github.com/google/yamlfmt
rev: v0.13.0
hooks:
- id: yamlfmt
args: [-formatter, retain_line_breaks=true]
- 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_types: [python]