-
Notifications
You must be signed in to change notification settings - Fork 5
/
.vale.ini
33 lines (31 loc) · 914 Bytes
/
.vale.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# This goes in a file named either `.vale.ini` or `_vale.ini`.
StylesPath = ".github/styles/Datadog"
# Alert types include suggestion, warning, or error.
MinAlertLevel = suggestion
# Specifies Vale to lint on Markdown files.
[*.md]
BasedOnStyles = Datadog
# Enable individual style rules.
Datadog.trademarks = YES
BlockIgnores = (?s) *({{< ?code-block [^>]* >}}.*?{{< ?/ ?code-block >}})
TokenIgnores = ({{< ?site-region [^>]* >}})
# Specifies Vale to lint on HTML files.
[*.html]
BasedOnStyles = Datadog
# Enable individual style rules.
Datadog.trademarks = YES
Datadog.abbreviations = YES
Datadog.americanspelling = YES
Datadog.dashes = YES
Datadog.endash = YES
Datadog.gender = YES
Datadog.headings = YES
Datadog.inclusive = YES
Datadog.links = YES
Datadog.oxfordcomma = YES
Datadog.pronouns = YES
Datadog.sentencelength = YES
Datadog.spaces = YES
Datadog.tense = YES
Datadog.words = YES
Datadog.quotes = YES