-
Notifications
You must be signed in to change notification settings - Fork 27
/
.pre-commit-config.yaml
82 lines (77 loc) · 2.08 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
79
80
81
82
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
exclude: |
(?x)^(
^docs/docs/en/user-guide/cli/.*|
^docs/docs_src/getting_started
)
- id: end-of-file-fixer
exclude: |
(?x)^(
^docs/docs/SUMMARY.md|
^docs/docs/en/api/.meta.yml|
^docs/docs_src/getting_started
)
- id: check-yaml
exclude: "docs/mkdocs.yml"
- id: check-added-large-files
exclude: |
(?x)^(
blog/package-lock.json
)$
- repo: local
hooks:
- id: lint
name: Linter
entry: "scripts/lint-pre-commit.sh"
language: python
# language_version: python3.9
types: [python]
require_serial: true
verbose: true
- repo: local
hooks:
- id: test
name: Test
entry: "scripts/test-no-llm-pre-commit.sh"
language: python
# language_version: python3.9
types: [python]
require_serial: true
verbose: true
- repo: local
hooks:
- id: static-analysis
name: Static analysis
entry: "scripts/static-pre-commit.sh"
language: python
# language_version: python3.9
types: [python]
require_serial: true
verbose: true
- repo: local
hooks:
- id: docs
name: Build docs
entry: "scripts/build-docs-pre-commit.sh"
language: python
#language_version: python3.10
files: ^docs
require_serial: true
verbose: true
- repo: https://github.com/Yelp/detect-secrets
rev: v1.5.0
hooks:
- id: detect-secrets
args: ["--baseline", ".secrets.baseline"]
exclude: |
(?x)^(
package.lock.json|
pnpm-lock.yaml|
examples/openapi/whatsapp_openapi_complete.json
)$