ValeAlertLevel

The ValeAlertLevel enum defines the severity of a Vale rule violation.

Definition

Source Code

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

enum ValeAlertLevel {
    Suggestion
    Warning
    Error
}

Fields

Suggestion

Indicates that the violation represents a suggestion to change the prose. Suggestions are the least serious violation type.

Suggestions may be resolved by the context of the violation. For example.

Warning

Indicates that the violation represents a warning about the prose.

Error

Indicates that the violation represents a structural or style error in the prose.

Last modified March 10, 2023: (GH-71) Document Vale classes (ad1e42a)