diff options
author | Evan Read <eread@gitlab.com> | 2019-07-02 08:50:00 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axil@gitlab.com> | 2019-07-02 08:50:00 +0000 |
commit | d05eebe1ddd50b5bf28dfa5e00633d1ecc1df562 (patch) | |
tree | 3a88810ecc7bd2f21491bf8b3c813cbb7a02b0b3 /.gitlab | |
parent | 10a3ef2254dfc2ea5bce073df3ad366eef82d84d (diff) | |
download | gitlab-ce-d05eebe1ddd50b5bf28dfa5e00633d1ecc1df562.tar.gz |
Fix most bare URLs in project
Linting rule not enabled for now
because tooling produces false
positives.
Diffstat (limited to '.gitlab')
-rw-r--r-- | .gitlab/ci/docs.gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab/ci/docs.gitlab-ci.yml b/.gitlab/ci/docs.gitlab-ci.yml index d7f8d70699b..6acbce6cf0c 100644 --- a/.gitlab/ci/docs.gitlab-ci.yml +++ b/.gitlab/ci/docs.gitlab-ci.yml @@ -67,8 +67,8 @@ docs lint: - cd /tmp/gitlab-docs # Lint Markdown # https://github.com/markdownlint/markdownlint/blob/master/docs/RULES.md - - bundle exec mdl content/$DOCS_GITLAB_REPO_SUFFIX/**/*.md --rules \ - MD004,MD032 + - bundle exec mdl content/$DOCS_GITLAB_REPO_SUFFIX/**/*.md --ignore-front-matter --rules \ + MD004,MD032,MD034 # Build HTML from Markdown - bundle exec nanoc # Check the internal links |