forked from ManticoreGamesInc/platform-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vale.ini
63 lines (53 loc) · 1.62 KB
/
.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Vale configuration for the Core Games documentation
# https://errata-ai.github.io/vale/
# Core properties
#----------------
# Specify where to find styles
StylesPath = .github/vale-styles
Vocab = Manticore
# Specify the minimum alert level to report
# Alerts are assigned a level of suggestion, warning, or error.
# For local use it's good to see all the suggestions and warnings.
MinAlertLevel = suggestion
# Specify how to test a particular type of files
#-----------------------------------------------
[*.md]
# Vale comes with three built-in styles: write-good, proselint, and Joblint.
# You could enable all rules in the "Google" style guide as follows:
BasedOnStyles = Google
# Initially, we only want to run a few rules, so we'll specify them individually
# Style.Rule = {YES, NO} to enable or disable a specific rule
Google.Spacing = NO ; too many false positives
Google.Ordinal = NO
Google.Quotes = NO
Google.Units = YES
Google.OptionalPlurals = YES
Google.Slang = YES
Google.We = NO ; disable but long term enable
Google.Headings = NO
Google.WordList = NO ; warn `above`, reference sections by name
Google.Will = NO
Google.Ellipses = NO
Google.Colons = NO
Google.FirstPerson = NO
Google.Ranges = YES
Google.OxfordComma = YES
# Modify the level of some rules
Google.Exclamation = warning
# Suggestions
Google.Acronyms = YES
Google.Contractions = NO
Google.Parens = NO
Google.Passive = NO
Google.Semicolons = NO
# Manticore rules
Manticore.FirstPerson = YES
[*.fr.md]
Google.Colons = NO
Google.Ellipses = NO
Google.Exclamation = NO
Google.FirstPerson = NO
Google.Headings = NO
Google.Quotes = NO
Google.Spelling = NO
Google.WordList = NO