2020-06-30 02:08:49 -04:00
|
|
|
---
|
2020-06-30 14:09:13 -04:00
|
|
|
# Suggestion: gitlab.FutureTense
|
2020-06-30 02:08:49 -04:00
|
|
|
#
|
2021-01-05 19:10:23 -05:00
|
|
|
# Checks for use of future tense in sentences. Present tense is strongly preferred.
|
2020-06-30 02:08:49 -04:00
|
|
|
#
|
|
|
|
# For a list of all options, see https://errata-ai.gitbook.io/vale/getting-started/styles
|
|
|
|
extends: existence
|
2020-11-02 04:08:35 -05:00
|
|
|
message: 'Avoid using future tense: "%s". Use present tense instead.'
|
2020-06-30 02:08:49 -04:00
|
|
|
ignorecase: true
|
2020-07-07 14:09:24 -04:00
|
|
|
level: warning
|
2020-12-15 19:09:58 -05:00
|
|
|
link: https://docs.gitlab.com/ee/development/documentation/styleguide/index.html#usage-list
|
2020-07-07 14:09:24 -04:00
|
|
|
raw:
|
2020-07-21 02:09:45 -04:00
|
|
|
- "(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]*)"
|