12 lines
274 B
YAML
12 lines
274 B
YAML
---
|
|
# Error: gitlab.Repetition
|
|
#
|
|
# Checks for duplicate words, like `the the` or `and and`.
|
|
#
|
|
# For a list of all options, see https://vale.sh/docs/topics/styles/
|
|
extends: repetition
|
|
message: "Remove this duplicate word: '%s'."
|
|
level: error
|
|
alpha: true
|
|
tokens:
|
|
- '[^\s]+'
|