Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .vale.ini
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ Datadog.spaces = YES
Datadog.tense = YES
Datadog.words = YES
Datadog.quotes = YES
Datadog.aws = YES
Datadog.aws = YES
Datadog.listpunctuation = YES
11 changes: 11 additions & 0 deletions styles/Datadog/listpunctuation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
extends: existence
message: "List items should have consistent punctuation."
link: "https://github.com/DataDog/documentation/blob/master/CONTRIBUTING.md#lists"
level: warning
scope: raw
ignorecase: true
tokens:
# Match bulleted list items starting with -
- '^\s*-\s+.*$'
# Match numbered list items
- '^\s*\d+\.\s+.*$'