ValeConfigurationFormatLanguageAssociation

The ValeConfigurationFormatLanguageAssociation class represents the mapping between files and a specific language for Vale’s spelling checks.

Definition

Source Code

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

class ValeConfigurationFormatLanguageAssociation {
    [string]$GlobPattern
    [string]$LanguageID
}

An instance of the ValeConfigurationFormatLanguageAssociation class represents the mapping between files and a specific language for Vale’s spelling checks.

Constructors

ValeConfigurationFormatLanguageAssociation()
Initializes a new instance of the ValeConfigurationFormatLanguageAssociation class.

Properties

GlobPattern
Represents the file-matching pattern to associate with a specific language.
LanguageID
Specifies the language the GlobPattern maps to.
Last modified March 10, 2023: (GH-71) Document Vale classes (ad1e42a)