debian-mirror-gitlab/doc/.vale/gitlab/VersionText.yml

24 lines
921 B
YAML
Raw Normal View History

2020-04-22 19:07:51 +05:30
---
2020-06-23 00:09:42 +05:30
# Error: gitlab.VersionText
#
2020-04-22 19:07:51 +05:30
# 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)
#
2021-11-11 11:23:49 +05:30
# 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.
2020-04-22 19:07:51 +05:30
#
2020-07-28 23:09:34 +05:30
# For a list of all options, see https://errata-ai.gitbook.io/vale/getting-started/styles
2020-04-22 19:07:51 +05:30
extends: existence
2021-01-29 00:20:46 +05:30
message: 'This introduced-in line is not formatted correctly.'
2021-02-22 17:27:13 +05:30
link: https://docs.gitlab.com/ee/development/documentation/styleguide/index.html#version-text-in-the-version-history
2020-04-22 19:07:51 +05:30
level: error
scope: raw
raw:
2021-11-11 11:23:49 +05:30
- '> \[?Introduced.+\n[^\n]'