-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
32 lines (31 loc) · 781 Bytes
/
.pre-commit-config.yaml
File metadata and controls
32 lines (31 loc) · 781 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
fail_fast: true
default_install_hook_types:
- pre-commit
- commit-msg
default_language_version:
python: python3.12
repos:
- repo: meta
hooks:
- id: check-hooks-apply
- id: check-useless-excludes
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: end-of-file-fixer
types: [python]
- id: trailing-whitespace
types: [python]
- id: check-ast
types: [python]
- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.24.1
hooks:
- id: validate-pyproject
files: pyproject.toml
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.8
hooks:
- id: ruff-format
- id: ruff
args: [--fix, --exit-non-zero-on-fix]