-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
43 lines (43 loc) · 1.11 KB
/
.pre-commit-config.yaml
File metadata and controls
43 lines (43 loc) · 1.11 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: check-merge-conflict
- id: check-json
- id: check-yaml
- id: debug-statements
- id: destroyed-symlinks
- id: check-executables-have-shebangs
- id: end-of-file-fixer
- id: no-commit-to-branch
args: [--branch, main]
- id: detect-private-key
- repo: https://github.com/hukkin/mdformat
rev: 1.0.0
hooks:
- id: mdformat
additional_dependencies:
- mdformat-footnote
- mdformat-gfm
- mdformat-gfm-alerts
# exclude .github/agents/*.md
exclude: ^\.github/agents/.*\.agent\.md$
- repo: https://github.com/google/yamlfmt
rev: v0.21.0
hooks:
- id: yamlfmt
- repo: https://github.com/codingjoe/esupgrade
rev: 2025.15.0
hooks:
- id: esupgrade
- repo: https://github.com/btford/write-good
rev: v1.0.8
hooks:
- id: write-good
args: [--no-passive]
ci:
autoupdate_schedule: weekly
skip:
- no-commit-to-branch
- write-good