13 lines
426 B
YAML
13 lines
426 B
YAML
---
|
|
# Warning: gitlab.SentenceLength
|
|
#
|
|
# Counts words in a sentence and alerts if a sentence exceeds 25 words.
|
|
#
|
|
# For a list of all options, see https://vale.sh/docs/topics/styles/
|
|
extends: occurrence
|
|
message: "Improve readability by using fewer than 25 words in this sentence."
|
|
scope: sentence
|
|
link: https://docs.gitlab.com/ee/development/documentation/styleguide/index.html#language
|
|
level: warning
|
|
max: 25
|
|
token: \b(\w+)\b
|