forked from strands-agents/sdk-python
-
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) · 973 Bytes
/
.pre-commit-config.yaml
File metadata and controls
36 lines (36 loc) · 973 Bytes
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: local
hooks:
- id: hatch-format
name: Format code
entry: hatch fmt --formatter
language: system
pass_filenames: false
types: [python]
stages: [pre-commit]
- id: hatch-lint
name: Lint code
entry: hatch run test-lint
language: system
pass_filenames: false
types: [python]
stages: [pre-commit]
- id: hatch-test-lint
name: Type linting
entry: hatch run test-lint
language: system
pass_filenames: false
types: [ python ]
stages: [ pre-commit ]
- id: hatch-test
name: Unit tests
entry: hatch test
language: system
pass_filenames: false
types: [python]
stages: [pre-commit]
- id: commitizen-check
name: Check commit message
entry: hatch run cz check --commit-msg-file
language: system
stages: [commit-msg]