From 4c6a557823e880742ce7a11bd15f56d01c2ab533 Mon Sep 17 00:00:00 2001 From: Adam Dangoor Date: Sun, 6 Oct 2024 14:12:44 +0100 Subject: [PATCH] Exclude shellcheck error which prevents it from working on Windows --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index bf77c2e..f5f86b3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -33,13 +33,13 @@ repos: - id: shellcheck name: shellcheck - entry: shellcheck --shell=bash + entry: shellcheck --shell=bash --exclude=SC1017 language: system types_or: [shell] - id: shellcheck-docs name: shellcheck-docs - entry: doccmd --language=shell --language=console --command="shellcheck --shell=bash" + entry: doccmd --language=shell --language=console --command="shellcheck --shell=bash --exclude=SC1017" language: system types_or: [markdown, rst]