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
|