forked from ag2ai/faststream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
99 lines (91 loc) · 2.6 KB
/
Copy path.pre-commit-config.yaml
File metadata and controls
99 lines (91 loc) · 2.6 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/compilerla/conventional-pre-commit
rev: v3.6.0
hooks:
- id: conventional-pre-commit
stages: [commit-msg]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: mixed-line-ending
- id: check-case-conflict
- id: check-ast
- id: check-toml
- id: check-yaml
exclude: 'docs/mkdocs.yml'
- id: check-added-large-files
exclude: |
(?x)^(
docs/docs/SUMMARY.md|
docs/docs/en/api/.meta.yml
)$
- id: end-of-file-fixer
exclude: |
(?x)^(
docs/docs/SUMMARY.md|
docs/docs/en/api/.meta.yml
)$
- repo: https://github.com/crate-ci/typos
rev: v1.30.3
hooks:
- id: typos
- repo: https://github.com/Yelp/detect-secrets
rev: v1.5.0
hooks:
- id: detect-secrets
args: [
'--exclude-files', 'docs/docs_src',
'--exclude-files', 'tests/asyncapi',
'--exclude-files', 'test_security.py',
'--exclude-files', 'tests/brokers/rabbit/test_url_builder.py',
'--exclude-files', 'docs/docs/en/getting-started/context.md',
'--exclude-files', 'docs/docs/en/release.md',
'--exclude-lines', 'postgresql://user:password@postgres/postgres',
'--exclude-lines', 'amqp://guest:guest@localhost:5672/',
]
exclude: package.lock.json
- repo: local
hooks:
- id: lint
name: Linter
entry: just lint
language: python
types: [python]
require_serial: true
verbose: true
pass_filenames: false
- id: mypy
name: Mypy
entry: just mypy
language: python
types: [python]
require_serial: true
verbose: true
pass_filenames: false
- id: bandit
name: bandit
entry: just bandit
language: python
types: [python]
require_serial: true
verbose: true
pass_filenames: false
- id: semgrep
name: semgrep
language: python
entry: just semgrep
types: [python]
require_serial: true
verbose: true
pass_filenames: false
- id: zizmor
name: zizmor
language: python
entry: just zizmor
files: ^\.github\/workflows\/
require_serial: true
verbose: true
pass_filenames: false