-
Notifications
You must be signed in to change notification settings - Fork 2
/
_vale.ini
63 lines (46 loc) · 1.94 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
############################# Core Settings ###################################
# To use: copy this file to the parent directory or where you wish to run Vale
# from. It can also be placed in your home directory, remember to update
# StylesPath.
# Where styles live. To add an additional style, such as write-good, put it here.
# You could also mv a style, such as Fio-docs, into a different directory.
#StylesPath = styles
# Packages can be just the name if part of the vale package hub, or could be the
# URL to the release zip
# Packages = proselint
# To use from here, comment out the above path and uncomment the following:
StylesPath = ../fio-style
# "suggestion" is the lowest level, followed by "warning" and "error".
# Change if you want less noise while reviewing.
MinAlertLevel = suggestion
# You can add different terms to either accept or reject by adding them to vocab.
# This can be useful if you are using a new term or writing to a specific audience.
#Vocab = docs
# Inline-level HTML tags to ignore.
#IgnoredScopes =
# HTML classes to ignore.
#IgnoredClasses =
# Block-level HTML tags to ignore
#SkippedScopes =
# What is consided to be an individual word.
#WordTemplate =
################################ Format #######################################
# Associations: Useful for alternative file extension; <alt-name> = <common>.
[formats]
mdx = md
# Vale supports a lot of markup languages. ReStructuredText and Markdown being
# what we will usually be using. Different styles can be set for different file
# formats
[*.{md,rst}]
# Based on will enable ALL rules that make up the style
BasedOnStyles = Vale, Fio-docs
# Rules can also be enabled individually:
#Fio-docs.InclusiveLanguage = YES
# ... or disabled
#Fio-docs.Contractions = NO
#Fio-docs.Branding-and-names = NO
#Fio-docs.InclusiveLanguage = NO
Vale.Spelling = NO
# Severity level can be modified for a rule as well:
#Vale.Spelling = warning
#Fio-docs.Branding-and-names = suggestion