From 5b39f40ee9e9f92ea83bcc66293ad892b668683d Mon Sep 17 00:00:00 2001 From: Gabor Javorszky Date: Tue, 7 Jan 2025 10:45:48 +0000 Subject: [PATCH] pre-commit: silence markdownlint (#7067) Closes #7064 Adding the two options will prevent their output to be printed to stdout. See https://github.com/DavidAnson/markdownlint-cli2/tree/main?tab=readme-ov-file#markdownlint-cli2jsonc `noBanner` and `noProgress` options. --- .markdownlint-cli2.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml index 80de28bc89..0634b21718 100644 --- a/.markdownlint-cli2.yaml +++ b/.markdownlint-cli2.yaml @@ -7,6 +7,12 @@ config: siblings_only: true line-length: false +# Hide the Finding: when markdownlint fixes files +noProgress: true + +# Hide the markdownlint-cli and markdownlint versions on each block +noBanner: true + # Define glob expressions to ignore ignores: - ".github/**"