|
| 1 | +# Configuration file for using Vale in the python-package-guide repository |
| 2 | +# |
| 3 | +# To disable checks on parts of a MarkDown or HTML file, delimit the section |
| 4 | +# using these HTML comments: |
| 5 | +# to disabled Vale checks after this line: <!-- vale off --> |
| 6 | +# to enable Vale checks after this line: <!-- vale on --> |
| 7 | +# |
| 8 | +# To disable checks based on MarkDown scope, see IgnoredScopes. |
| 9 | +# To disable checks on certain HTML elements, see IgnoredClasses. |
| 10 | +# |
| 11 | +# More information about the configuration can be found here: |
| 12 | +# https://vale.sh/docs/topics/config |
| 13 | + |
| 14 | + |
| 15 | +# Path to the styles directory, where style rules are defined |
| 16 | +StylesPath = vale-styles |
| 17 | + |
| 18 | +# Path to a dictionary folders inside the StylesPath config subdirectory. This |
| 19 | +# folder can contain two files, accept.txt and reject.txt, with one word per |
| 20 | +# line. These words will be used to check for spelling mistakes in addition to |
| 21 | +# the internal dictionary, if the 'Vale' ruleset is enabled (see below) |
| 22 | +# See https://vale.sh/docs/topics/vocab/#folder-structure for more details |
| 23 | +Vocab = sample |
| 24 | + |
| 25 | + |
| 26 | +# Checks are defined in sections by file type, like the one below for |
| 27 | +# MarkDown. In each section you can enable groups of style rules, defined in folders |
| 28 | +# inside the StylesPath directory. |
| 29 | +# Use 'Vale' to enable the internal style rules and checks. |
| 30 | + |
| 31 | +[*.md] |
| 32 | +BasedOnStyles = package-guide-test |
0 commit comments