We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37e17dc commit 18ca7ebCopy full SHA for 18ca7eb
1 file changed
.pre-commit-config.yaml
@@ -4,15 +4,24 @@ repos:
4
hooks:
5
- id: end-of-file-fixer
6
- id: trailing-whitespace
7
- - repo: https://github.com/charliermarsh/ruff-pre-commit
8
- rev: 'v0.13.3'
+ - repo: https://github.com/astral-sh/ruff-pre-commit
+ rev: v0.13.3
9
10
- - id: ruff
11
- args: [--fix, --exit-non-zero-on-fix]
+ - id: ruff-check
+ types_or: [ python, pyi ]
12
+ args: [--fix-only, --exit-non-zero-on-fix]
13
+ # - id: ruff-format
14
+ # types_or: [ python, pyi ]
15
- repo: https://github.com/codespell-project/codespell
16
# Configuration for codespell is in pyproject.toml
17
rev: v2.4.1
18
19
- id: codespell
20
additional_dependencies:
21
- tomli
22
+ - repo: https://github.com/astral-sh/uv-pre-commit
23
+ # uv version.
24
+ rev: 0.8.23
25
+ hooks:
26
+ # Update the uv lockfile
27
+ - id: uv-lock
0 commit comments