fix: CI failures caused by a ruff version mismatch (#36358)

This commit is contained in:
Michael S. Molina
2025-12-01 15:35:22 -05:00
committed by GitHub
parent 92986c2ecc
commit b12f5f8394
5 changed files with 16 additions and 5 deletions

View File

@@ -106,12 +106,19 @@ repos:
files: helm
verbose: false
args: ["--log-level", "error"]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.9.7
# Using local hooks ensures ruff version matches requirements/development.txt
- repo: local
hooks:
- id: ruff-format
name: ruff-format
entry: ruff format
language: system
types: [python]
- id: ruff
args: [--fix]
name: ruff
entry: ruff check --fix --show-fixes
language: system
types: [python]
- repo: local
hooks:
- id: pylint