-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
71 lines (63 loc) · 1.91 KB
/
Copy path.pre-commit-config.yaml
File metadata and controls
71 lines (63 loc) · 1.91 KB
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
default_install_hook_types: [pre-commit, commit-msg]
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.17
hooks:
- id: ruff
args:
- --fix
- --select=ALL
- --ignore=INP,C408,PTH,TRY003,EM102,COM812
- --target-version=py314
- id: ruff-format
- repo: builtin
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-json
- id: check-merge-conflict
- id: check-symlinks
- id: check-yaml
- id: destroyed-symlinks
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.48.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.4.2
hooks:
- id: codespell
stages: [pre-commit, commit-msg]
args: [--ignore-words-list, gool, --check-filenames]
- repo: https://github.com/google/yamlfmt
rev: v0.21.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
exclude_types: [svg]
exclude: ^\.pre-commit-config\.yaml$
- id: make-readme
name: Regenerate readme.md from data/*.yml
entry: python data/make_readme.py
language: python
additional_dependencies: [pyyaml]
files: ^(data/.*\.yml|readme\.md)$
pass_filenames: false