From 16e8e8a8778957c33c705c8b826e6466b85cfa1b Mon Sep 17 00:00:00 2001 From: Dean Malan Date: Thu, 12 Mar 2026 16:06:06 +0200 Subject: [PATCH] chore: run Ruff with --fix in Pre-commit to auto-fix fixable errors (#7232) --- .pre-commit-config.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c34093102..6a5707b8e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,5 +14,8 @@ repos: # Ruff version. rev: v0.15.5 hooks: - - id: ruff + # Linter + - id: ruff-check + args: [ --fix ] + # Formatter - id: ruff-format