Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
d1249636
Commit
d1249636
authored
Sep 08, 2021
by
Jonston Chan
Committed by
Marcel Amirault
Sep 08, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve documentation test
parent
c5cdc943
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
doc/.vale/gitlab/InternalLinkExtension.yml
doc/.vale/gitlab/InternalLinkExtension.yml
+1
-1
doc/.vale/gitlab/InternalLinkFormat.yml
doc/.vale/gitlab/InternalLinkFormat.yml
+1
-1
doc/.vale/gitlab/VersionText.yml
doc/.vale/gitlab/VersionText.yml
+4
-4
doc/development/code_intelligence/index.md
doc/development/code_intelligence/index.md
+1
-1
doc/user/project/merge_requests/code_quality.md
doc/user/project/merge_requests/code_quality.md
+2
-2
No files found.
doc/.vale/gitlab/InternalLinkExtension.yml
View file @
d1249636
...
...
@@ -10,4 +10,4 @@ link: https://docs.gitlab.com/ee/development/documentation/styleguide/index.html
level
:
error
scope
:
raw
raw
:
-
'
\[.+\]\(
(https?:){0}[\w\/\.-]+(\.html).*?
\)'
-
'
\[.+\]\(
[\w\/\.-]+\.html[^)]*
\)'
doc/.vale/gitlab/InternalLinkFormat.yml
View file @
d1249636
...
...
@@ -10,4 +10,4 @@ link: https://docs.gitlab.com/ee/development/documentation/styleguide/index.html
level
:
error
scope
:
raw
raw
:
-
'
\[.+\]\(\.\/.
+
?\)'
-
'
\[.+\]\(\.\/.
*
?\)'
doc/.vale/gitlab/VersionText.yml
View file @
d1249636
...
...
@@ -9,9 +9,9 @@
# - `> Introduced` (version text without a link)
# - `> [Introduced` (version text with a link)
#
# Because it excludes
`-`, it doesn't look for multi-line version text, for which content
#
immediately on the next line is ok. However, this will often highlight where multi-line version
# text is attempted without `-` characters.
# Because it excludes
the prefix `> - `, it doesn't look for multi-line version text, for which
#
content immediately on the next line is ok. However, this will often highlight where multi-line
#
version
text is attempted without `-` characters.
#
# For a list of all options, see https://errata-ai.gitbook.io/vale/getting-started/styles
extends
:
existence
...
...
@@ -20,4 +20,4 @@ link: https://docs.gitlab.com/ee/development/documentation/styleguide/index.html
level
:
error
scope
:
raw
raw
:
-
'
>
(-
){0}\[?Introduced.+\n[^\n`
]'
-
'
>
\[?Introduced.+\n[^\n
]'
doc/development/code_intelligence/index.md
View file @
d1249636
...
...
@@ -37,7 +37,7 @@ sequenceDiagram
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
[
describes
](
https://github.com/sourcegraph/sourcegraph/blob/ma
ster/doc/user/code_intelligence
/writing_an_indexer.md
)
[
describes
](
https://github.com/sourcegraph/sourcegraph/blob/ma
in/doc/code_intelligence/explanations
/writing_an_indexer.md
)
interactions between a method or function and its definition(s) or references. The
document is marked to be stored as an LSIF report artifact.
...
...
doc/user/project/merge_requests/code_quality.md
View file @
d1249636
...
...
@@ -275,7 +275,7 @@ might look like this example:
job1
:
rules
:
-
if
:
'
$CI_PIPELINE_SOURCE
==
"merge_request_event"'
# Run job1 in merge request pipelines
-
if
:
'
$CI_COMMIT_BRANCH
==
"ma
ster"'
# Run job1 in pipelines on the master
branch (but not in other branch pipelines)
-
if
:
'
$CI_COMMIT_BRANCH
==
"ma
in"'
# Run job1 in pipelines on the main
branch (but not in other branch pipelines)
-
if
:
'
$CI_COMMIT_TAG'
# Run job1 in pipelines for tags
```
...
...
@@ -291,7 +291,7 @@ code_quality:
-
if
:
'
$CODE_QUALITY_DISABLED'
when
:
never
-
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
```
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment