From b6e27d596b9ad7c7ad7213350ec4457a5a7c3f85 Mon Sep 17 00:00:00 2001 From: lindot11 Date: Fri, 1 Dec 2023 19:53:02 +0100 Subject: [PATCH] markdownlint and shellcheck on alle files --- .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 9355dd775..96b940364 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -64,14 +64,14 @@ repos: rev: v0.37.0 hooks: - id: markdownlint - files: '^(client|servers/execution/runner|servers/lib)/.*\.md$' + files: '.*\.md$' stages: [pre-commit] - repo: https://github.com/syntaqx/git-hooks rev: v0.0.18 hooks: - id: shellcheck - files: '^(docs|deploy|script|ssl)/.*' + files: '.*' stages: [pre-commit] - repo: https://github.com/pre-commit/pre-commit-hooks