You can override the default StylesPath by manually defining a VALE_STYLES_PATH environment variable.
The StylesPath specifies where Vale should look for its external resources
(e.g., styles and ignore files). The path value may be absolute or relative to
the location of the parent .vale.ini file.
ini
Copy
# Here's an example of a relative path:## .vale.ini# ci/# ├── vale/# │ ├── styles/StylesPath = ci/vale/styles[*.md]# `MyStyle` is a directory within# `ci/vale/styles`.BasedOnStyles = MyStyle
If you don’t specify a StylesPath in your .vale.ini file, Vale will use its
default location:
OS
Search Locations
Windows
%LOCALAPPDATA%\vale\styles
macOS
$HOME/Library/Application Support/vale/styles
Unix
$XDG_DATA_HOME/vale/styles
(Run the vale ls-dirs command to see the exact locations on your system.)