2020-07-28 23:09:34 +05:30
|
|
|
---
|
2022-08-27 11:52:29 +05:30
|
|
|
# Warning: gitlab.FutureTense
|
2020-07-28 23:09:34 +05:30
|
|
|
#
|
2021-03-08 18:12:59 +05:30
|
|
|
# Checks for use of future tense in sentences. Present tense is strongly preferred.
|
2020-07-28 23:09:34 +05:30
|
|
|
#
|
2023-01-13 00:05:48 +05:30
|
|
|
# For a list of all options, see https://vale.sh/docs/topics/styles/
|
2020-07-28 23:09:34 +05:30
|
|
|
extends: existence
|
2023-01-13 00:05:48 +05:30
|
|
|
message: "Instead of future tense '%s', use present tense."
|
2020-07-28 23:09:34 +05:30
|
|
|
ignorecase: true
|
|
|
|
level: warning
|
2023-01-13 00:05:48 +05:30
|
|
|
link: https://docs.gitlab.com/ee/development/documentation/styleguide/word_list.html#future-tense
|
2020-07-28 23:09:34 +05:30
|
|
|
raw:
|
2020-10-24 23:57:45 +05:30
|
|
|
- "(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]*)"
|