Commit 49edd888 authored by Marcel Amirault's avatar Marcel Amirault

Merge branch 'JonstonChan-improve-docs' into 'master'

Improve documentation test

See merge request gitlab-org/gitlab!69577
parents c5cdc943 d1249636
...@@ -10,4 +10,4 @@ link: https://docs.gitlab.com/ee/development/documentation/styleguide/index.html ...@@ -10,4 +10,4 @@ link: https://docs.gitlab.com/ee/development/documentation/styleguide/index.html
level: error level: error
scope: raw scope: raw
raw: raw:
- '\[.+\]\((https?:){0}[\w\/\.-]+(\.html).*?\)' - '\[.+\]\([\w\/\.-]+\.html[^)]*\)'
...@@ -10,4 +10,4 @@ link: https://docs.gitlab.com/ee/development/documentation/styleguide/index.html ...@@ -10,4 +10,4 @@ link: https://docs.gitlab.com/ee/development/documentation/styleguide/index.html
level: error level: error
scope: raw scope: raw
raw: raw:
- '\[.+\]\(\.\/.+?\)' - '\[.+\]\(\.\/.*?\)'
...@@ -9,9 +9,9 @@ ...@@ -9,9 +9,9 @@
# - `> Introduced` (version text without a link) # - `> Introduced` (version text without a link)
# - `> [Introduced` (version text with a link) # - `> [Introduced` (version text with a link)
# #
# Because it excludes `-`, it doesn't look for multi-line version text, for which content # Because it excludes the prefix `> - `, it doesn't look for multi-line version text, for which
# immediately on the next line is ok. However, this will often highlight where multi-line version # content immediately on the next line is ok. However, this will often highlight where multi-line
# text is attempted without `-` characters. # version text is attempted without `-` characters.
# #
# For a list of all options, see https://errata-ai.gitbook.io/vale/getting-started/styles # For a list of all options, see https://errata-ai.gitbook.io/vale/getting-started/styles
extends: existence extends: existence
...@@ -20,4 +20,4 @@ link: https://docs.gitlab.com/ee/development/documentation/styleguide/index.html ...@@ -20,4 +20,4 @@ link: https://docs.gitlab.com/ee/development/documentation/styleguide/index.html
level: error level: error
scope: raw scope: raw
raw: raw:
- '> (- ){0}\[?Introduced.+\n[^\n`]' - '> \[?Introduced.+\n[^\n]'
...@@ -37,7 +37,7 @@ sequenceDiagram ...@@ -37,7 +37,7 @@ sequenceDiagram
1. The CI/CD job generates a document in an LSIF format (usually `dump.lsif`) using [an 1. The CI/CD job generates a document in an LSIF format (usually `dump.lsif`) using [an
indexer](https://lsif.dev) for the language of a project. The format indexer](https://lsif.dev) for the language of a project. The format
[describes](https://github.com/sourcegraph/sourcegraph/blob/master/doc/user/code_intelligence/writing_an_indexer.md) [describes](https://github.com/sourcegraph/sourcegraph/blob/main/doc/code_intelligence/explanations/writing_an_indexer.md)
interactions between a method or function and its definition(s) or references. The interactions between a method or function and its definition(s) or references. The
document is marked to be stored as an LSIF report artifact. document is marked to be stored as an LSIF report artifact.
......
...@@ -275,7 +275,7 @@ might look like this example: ...@@ -275,7 +275,7 @@ might look like this example:
job1: job1:
rules: rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"' # Run job1 in merge request pipelines - if: '$CI_PIPELINE_SOURCE == "merge_request_event"' # Run job1 in merge request pipelines
- if: '$CI_COMMIT_BRANCH == "master"' # Run job1 in pipelines on the master branch (but not in other branch pipelines) - if: '$CI_COMMIT_BRANCH == "main"' # Run job1 in pipelines on the main branch (but not in other branch pipelines)
- if: '$CI_COMMIT_TAG' # Run job1 in pipelines for tags - if: '$CI_COMMIT_TAG' # Run job1 in pipelines for tags
``` ```
...@@ -291,7 +291,7 @@ code_quality: ...@@ -291,7 +291,7 @@ code_quality:
- if: '$CODE_QUALITY_DISABLED' - if: '$CODE_QUALITY_DISABLED'
when: never when: never
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"' # Run code quality job in merge request pipelines - if: '$CI_PIPELINE_SOURCE == "merge_request_event"' # Run code quality job in merge request pipelines
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' # Run code quality job in pipelines on the master branch (but not in other branch pipelines) - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' # Run code quality job in pipelines on the default branch (but not in other branch pipelines)
- if: '$CI_COMMIT_TAG' # Run code quality job in pipelines for tags - if: '$CI_COMMIT_TAG' # Run code quality job in pipelines for tags
``` ```
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment