ValeConfigurationIgnore
The ValeConfigurationIgnore class maps a pattern of files to a set of patterns for Vale to use when deciding whether to skip processing text during a check.
less than a minute
Definition
Source Code
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
class ValeConfigurationIgnore {
[string]$GlobPattern
[string[]]$IgnorePatterns
}
An instance of the ValeConfigurationIgnore class maps a pattern of files to a set of patterns for Vale to use when deciding whether to skip processing text during a check.
Constructors
ValeConfigurationIgnore()
- Initializes a new instance of the ValeConfigurationIgnore class.
Properties
- GlobPattern
- Represents the file-matching pattern to apply the ignore to.
- IgnorePatterns
- Specifies one or more patterns for Vale to use when deciding whether to skip processing text.
Last modified March 10, 2023: (GH-71) Document Vale classes (ad1e42a)