-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path.vale.ini
More file actions
35 lines (29 loc) · 983 Bytes
/
.vale.ini
File metadata and controls
35 lines (29 loc) · 983 Bytes
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
StylesPath = .vale/styles
MinAlertLevel = suggestion
Packages = write-good, Google
IgnoredScopes = code, tt, strong, summary
Vocab = Metalbear
[*.md]
BasedOnStyles = Vale, write-good, Google, Metalbear
# ignore markdown links and emails
TokenIgnores = (\[[^\]]*\]\(.*?\)), (\S+@\S+\.\S+)
[*.{yml,yaml}]
BasedOnStyles = Vale, write-good, Google, Metalbear
# YAML values/keys cause too many false positives for term/spelling rules,
# and Vale cannot yet distinguish comments from values without tree-sitter YAML.
Vale.Spelling = NO
Vale.Terms = NO
Google.Spacing = NO
Metalbear.Terms = NO
# Helm templates are structured code, not prose — skip them
[*/templates/**]
BasedOnStyles =
# GitHub Actions workflows are CI scripts, not prose — skip them
[.github/**]
BasedOnStyles =
# Test values are example Helm values with no prose — skip them
[test_values/**]
BasedOnStyles =
# Vale's own bundled style files are not our content — skip them
[.vale/styles/**]
BasedOnStyles =