-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
36 lines (36 loc) · 1.02 KB
/
.pre-commit-config.yaml
File metadata and controls
36 lines (36 loc) · 1.02 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-symlinks
- id: check-toml
exclude: ^alacritty/alacritty\.toml$
- id: check-yaml
- id: check-json
- id: detect-aws-credentials
args: [--allow-missing-credentials]
- id: detect-private-key
- id: double-quote-string-fixer
- id: end-of-file-fixer
exclude: ^fcitx5/fcitx5
- id: forbid-new-submodules
- id: mixed-line-ending
- id: trailing-whitespace
- id: pretty-format-json
args: [--autofix]
- repo: https://github.com/gitleaks/gitleaks
rev: v8.30.0
hooks:
- id: gitleaks
- repo: https://github.com/google/yamlfmt
rev: v0.21.0
hooks:
- id: yamlfmt
- repo: https://github.com/pappasam/toml-sort
rev: v0.24.3
hooks:
- id: toml-sort-fix
args: [--in-place, --no-sort-tables]
exclude: ^alacritty/alacritty\.toml$