23 lines
877 B
YAML
23 lines
877 B
YAML
---
|
|
# Error: gitlab.VersionText
|
|
#
|
|
# Checks that version text is formatted correctly.
|
|
#
|
|
# Specifically looks for either of the following that is immediately followed on the next line
|
|
# by content, which will break rendering:
|
|
#
|
|
# - `> Introduced` (version text without a link)
|
|
# - `> [Introduced` (version text with a link)
|
|
#
|
|
# 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
|
|
message: 'This introduced-in line is not formatted correctly.'
|
|
link: https://docs.gitlab.com/ee/development/documentation/versions.html
|
|
level: error
|
|
scope: raw
|
|
raw:
|
|
- '> \[?Introduced.+\n[^\n]'
|