10 lines
230 B
YAML
10 lines
230 B
YAML
|
# Checks for duplicate words, like `the the` or `and and`.
|
||
|
#
|
||
|
# For a list of all options, see https://errata-ai.github.io/vale/styles/
|
||
|
extends: repetition
|
||
|
message: '"%s" is repeated.'
|
||
|
level: error
|
||
|
alpha: true
|
||
|
tokens:
|
||
|
- '[^\s]+'
|