mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-14 12:56:34 +03:00
c407726a66
* docs: adds vale rules and workflow for running in CI * docs: updates product name from ReDoc to Redoc
11 lines
384 B
YAML
11 lines
384 B
YAML
extends: existence
|
|
message: 'Avoid using future tense: "%s". Use present tense instead.'
|
|
link: https://intranet.redoc.ly/contributing/documentation-style-guide/#tone-and-audience
|
|
ignorecase: true
|
|
level: error
|
|
raw:
|
|
- "(going to( |\n|[[:punct:]])[a-zA-Z]*|"
|
|
- "will( |\n|[[:punct:]])[a-zA-Z]*|"
|
|
- "won't( |\n|[[:punct:]])[a-zA-Z]*|"
|
|
- "[a-zA-Z]*'ll( |\n|[[:punct:]])[a-zA-Z]*)"
|