2020-02-04 19:08:41 -05:00
|
|
|
---
|
2020-05-21 02:08:25 -04:00
|
|
|
# Error: gitlab.SentenceSpacing
|
|
|
|
#
|
2021-01-05 19:10:23 -05:00
|
|
|
# Checks for incorrect spacing (no spaces, or more than one space) around punctuation.
|
2020-02-21 04:09:01 -05:00
|
|
|
#
|
2020-06-24 02:09:01 -04:00
|
|
|
# For a list of all options, see https://errata-ai.gitbook.io/vale/getting-started/styles
|
2020-02-04 19:08:41 -05:00
|
|
|
extends: existence
|
2020-03-13 05:09:23 -04:00
|
|
|
message: '"%s" must contain one and only one space.'
|
2020-12-15 19:09:58 -05:00
|
|
|
link: https://docs.gitlab.com/ee/development/documentation/styleguide/index.html#punctuation
|
2020-03-13 05:09:23 -04:00
|
|
|
level: error
|
2020-02-21 04:09:01 -05:00
|
|
|
nonword: true
|
2020-02-04 19:08:41 -05:00
|
|
|
tokens:
|
2020-02-21 04:09:01 -05:00
|
|
|
- '[a-z][.?!,][A-Z]'
|
2020-03-13 05:09:23 -04:00
|
|
|
- '[\w.?!,\(\)\-":] {2,}[\w.?!,\(\)\-":]'
|