chore(pre-commit): update pre-commit hooks

This commit is contained in:
Xuehai Pan 2025-04-19 23:58:39 +08:00
parent 14b15ea0a1
commit 57b48e6a3a
2 changed files with 21 additions and 22 deletions

View file

@ -27,16 +27,25 @@ repos:
- id: debug-statements
- id: double-quote-string-fixer
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.4
rev: v0.11.6
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format
args: [--exit-non-zero-on-format]
- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
hooks:
- id: codespell
additional_dependencies: [".[toml]"]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.15.0
hooks:
- id: mypy
exclude: |
(?x)(
^nvitop-exporter/setup.py$
)
- repo: local
hooks:
- id: pylint
@ -45,15 +54,3 @@ repos:
language: system
types: [python]
require_serial: true
- repo: local
hooks:
- id: mypy
name: mypy
entry: mypy
language: system
types_or: [python, pyi]
require_serial: true
exclude: |
(?x)(
^nvitop-exporter/setup.py$
)