Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-05-31 15:07:08 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-31 15:07:08 +0300
commit07f6ded1cb698550284e5f348de8f1b884e715ae (patch)
treea9f09ab1c4e924d2efb2d689f723814703fced11 /scripts
parentb7a422e845aff188077292f3833e3105dae23062 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/lint-doc.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lint-doc.sh b/scripts/lint-doc.sh
index 84035ecd012..e6b63925fc6 100755
--- a/scripts/lint-doc.sh
+++ b/scripts/lint-doc.sh
@@ -197,7 +197,7 @@ then
# shellcheck disable=2059
printf "${COLOR_GREEN}INFO: Merged results pipeline detected, but no markdown files found. Skipping.${COLOR_RESET}\n"
else
- if ! yarn markdownlint --config .markdownlint.yml "${MD_DOC_PATH}" --rules doc/.markdownlint/rules;
+ if ! yarn markdownlint --rules doc/.markdownlint/rules ${MD_DOC_PATH};
then
# shellcheck disable=2059
printf "${COLOR_RED}ERROR: Markdownlint failed with errors!${COLOR_RESET}\n" >&2