-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path.vale.ini
35 lines (25 loc) · 869 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
34
35
# Core settings
# =============
# Location of our `styles`
StylesPath = "styles"
# The options are `suggestion`, `warning`, or `error` (defaults to “warning”).
MinAlertLevel = warning
# By default, `code` and `tt` are ignored.
IgnoredScopes = code, tt
# By default, `script`, `style`, `pre`, and `figure` are ignored.
SkippedScopes = script, style, pre, figure
# WordTemplate specifies what Vale will consider to be an individual word.
WordTemplate = \b(?:%s)\b
# List of Packages to be used for our guidelines
Packages = Google
# Define the Ansys vocabulary
Vocab = ANSYS
# Apply the following styles
[*.{rst}]
BasedOnStyles = Vale, Google
Vale.Terms = NO
# By default, `class` and `func` are ignored
TokenIgnores = (:class:`.*`|:func:`.*`)
# Removing Google-specific rule - Not applicable under some circumstances
Google.WordList = NO
Google.Colons = NO