From db548ce61fce552f43f2894ca9d3e2962634668a Mon Sep 17 00:00:00 2001 From: Gabor Javorszky Date: Mon, 6 Jan 2025 16:33:23 +0000 Subject: [PATCH] pre-commit: silence markdownlint 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/**"