From d9cfe81f6e1892e23ad7d37f9d7268eca62ce2fd Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Fri, 11 Jul 2025 09:59:03 +0200 Subject: [PATCH] MNT: no need to re-run `ruff check` after `ruff format` Running `ruff check` then `ruff format` should always do the right thing. No need to rerun `ruff check` specifically for `ISC001`. --- .pre-commit-config.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index aa3f246537a..f2d2978e5b9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -19,6 +19,3 @@ repos: args: [ --fix ] - name: ruff format id: ruff-format - - name: fix implicit string concatenation - id: ruff - args: [ --select, ISC001, --fix ]