diff --git a/bin/lint-markdown b/bin/lint-markdown index 5b9019f83..58154bc4f 100755 --- a/bin/lint-markdown +++ b/bin/lint-markdown @@ -14,4 +14,4 @@ link_check_config=".github/workflows/markdownlint-config.json" # Recursively find all markdown files (*.md) in the current directory, excluding node_modules and .venv subfolders. # Pass them in as args to the lint command using the handy `xargs` command. -find . -name \*.md -not -path "*/node_modules/*" -not -path "*/.venv/*" -not -path "*/.terraform/*" -print0 | xargs -0 -n1 npx markdown-link-check --config "${link_check_config}" +find . -name \*.md -not -path "*/node_modules/*" -not -path "*/.venv/*" -not -path "*/.terraform/*" -print0 | xargs -0 -n1 npx markdown-link-check --quiet --config "${link_check_config}"