-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
65 lines (60 loc) · 1.71 KB
/
.pre-commit-config.yaml
File metadata and controls
65 lines (60 loc) · 1.71 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
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
# Quick Start:
#
# pip install pre-commit
# pre-commit install && pre-commit install -t pre-push
# pre-commit run --all-files
#
# To Skip Checks:
#
# git commit --no-verify
default_stages: [pre-commit, pre-merge-commit]
default_language_version:
python: python3.12
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-added-large-files
stages: [pre-commit, pre-merge-commit, manual]
args:
- --maxkb=2000
- id: check-toml
stages: [pre-commit, pre-merge-commit, manual]
- id: check-yaml
stages: [pre-commit, pre-merge-commit, manual]
args:
- --unsafe
- id: end-of-file-fixer
stages: [pre-commit, pre-merge-commit, manual]
- id: trailing-whitespace
stages: [pre-commit, pre-merge-commit, manual]
- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
hooks:
- id: codespell
stages: [pre-commit, pre-merge-commit, manual]
args: [--ignore-words=.codespell-whitelist.txt]
- repo: local
hooks:
- id: lint
name: Linter
stages: [pre-commit, pre-merge-commit, manual]
language: system
entry: make lint
- repo: local
hooks:
- id: static-analysis
name: Static analysis
language: system
entry: make static
- repo: https://github.com/Yelp/detect-secrets
rev: v1.5.0
hooks:
- id: detect-secrets
args: [
'--baseline', '.secrets.baseline',
]
exclude: package.lock.json
stages: [ pre-commit, pre-merge-commit, manual ]