-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
29 lines (26 loc) · 794 Bytes
/
.pre-commit-config.yaml
File metadata and controls
29 lines (26 loc) · 794 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
name: Check trailing whitespace
- id: end-of-file-fixer
name: Ensure end of file newline
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.15.0
hooks:
- id: mypy
name: Static type checking
additional_dependencies: ["types-freezegun==1.1.6", "boto3-stubs[s3]", "types-PyYAML"]
- repo: https://github.com/Yelp/detect-secrets
rev: v1.4.0
hooks:
- id: detect-secrets
name: Detect secrets
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.11.7'
hooks:
- id: ruff-format
name: Formatting with ruff
- id: ruff
name: Linting with ruff