-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.vale.ini
More file actions
50 lines (39 loc) · 1.01 KB
/
.vale.ini
File metadata and controls
50 lines (39 loc) · 1.01 KB
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
# Vale configuration for blog post linting
# https://vale.sh/docs/topics/config/
# Specify the minimum alert level
MinAlertLevel = suggestion
# Define the packages (styles) to use
Packages = Google
# Configure style paths
StylesPath = .vale/styles
Vocab = Blog
# Configure file associations and scope
[formats]
mdx = md
# Global settings - apply to all files by default
[*]
# Base Vale rules
BasedOnStyles = Vale
# Disable specific Vale rules
Vale.Terms = NO
# Blog content specific settings
[source/site/content/*.md]
# Google Developer Documentation Style Guide
BasedOnStyles = Google, Vale
# Disable specific rules that may not apply to blog content
Google.We = NO
Google.Will = NO
Google.So = NO
Google.Contractions = suggestion
Vale.Terms = NO
# Draft content settings (more lenient)
[source/site/content/__drafts/*.md]
BasedOnStyles = Google, Vale
# More lenient settings for drafts
Google.FirstPerson = NO
Google.We = NO
Google.Will = NO
Google.So = NO
Google.Contractions = NO
Google.Exclamation = NO
Vale.Terms = NO