---
# Warning: gitlab_base.FutureTense
#
# Checks for use of future tense in sentences. Present tense is strongly preferred.
#
# For a list of all options, see https://vale.sh/docs/topics/styles/
extends: existence
message: "Instead of future tense '%s', use present tense."
ignorecase: true
nonword: true
level: warning
link: https://docs.gitlab.com/ee/development/documentation/styleguide/word_list.html#future-tense
tokens:
  - (going to|will|won't)[ \n:]\w*
  - (It?|we|you|they)'ll[ \n:]\w*
