From af81585b60a522429cd3fcceab74e6ded5839075 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Tue, 31 Mar 2026 09:13:24 +0200 Subject: [PATCH] pre-commit: skip cargo and cspell hooks on pre-commit.ci --- .pre-commit-config.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 2fa0fc01e..9abeb5ca4 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -57,3 +57,6 @@ repos: entry: bash -c 'if command -v cspell >/dev/null 2>&1; then cspell --no-must-find-files -- "$@"; else echo "cspell not found, skipping spell check"; exit 0; fi' -- pass_filenames: true language: system + +ci: + skip: [rust-linting, rust-clippy, cargo-lock-check, cspell]