-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
33 lines (33 loc) · 818 Bytes
/
.pre-commit-config.yaml
File metadata and controls
33 lines (33 loc) · 818 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
repos:
- repo: local
hooks:
- id: lint
name: lint
language: system
pass_filenames: false
entry: uvx ruff check --fix
- id: format
name: format
language: system
pass_filenames: false
entry: uvx ruff format
- id: vulture
name: vulture
language: system
pass_filenames: false
entry: uvx vulture
- id: pyright
name: pyright
language: system
pass_filenames: false
entry: uv run pyright mypy_boto3_builder
- id: mypy
name: mypy
language: system
pass_filenames: false
entry: uv run mypy mypy_boto3_builder
- id: pytest
name: pytest
language: system
pass_filenames: false
entry: uv run pytest