File: .vale.ini

package info (click to toggle)
python-pyvista 0.44.1-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 159,804 kB
  • sloc: python: 72,164; sh: 118; makefile: 68
file content (33 lines) | stat: -rw-r--r-- 686 bytes parent folder | download
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
# Core settings
# =============

# Location of our `styles`
StylesPath = "styles"

# The options are `suggestion`, `warning`, or `error` (defaults to “warning”).
MinAlertLevel = warning

# WordTemplate specifies what Vale will consider to be an individual word.
WordTemplate = \b(?:%s)\b

# Define the vocabulary
Vocab = pyvista

[*.{md,rst}]

# Apply the following styles
BasedOnStyles = Vale, Google

# Ignoring Google-specific rules - Not applicable under some circumstances
Google.WordList = NO
Google.Colons = NO
Google.Spacing = NO

# ignore Jinja placeholders
TokenIgnores = (?s){(.+?)}

[*.py]

# Only check for the following:
Vale.Repetition = YES
Google.Exclamation = YES