Interface ReportingConfiguration

interface ReportingConfiguration {
    ignoreRandomStrings?: boolean;
    maxDuplicateProblems?: number;
    maxNumberOfProblems?: number;
    minRandomLength?: number;
    minWordLength?: number;
    numSuggestions?: number;
    suggestionNumChanges?: number;
    suggestionsTimeout?: number;
}

Hierarchy (View Summary)

Properties

ignoreRandomStrings?: boolean

Ignore sequences of characters that look like random strings.

true
maxDuplicateProblems?: number

The maximum number of times the same word can be flagged as an error in a file.

5
maxNumberOfProblems?: number

The maximum number of problems to report in a file.

10000
minRandomLength?: number

The minimum length of a random string to be ignored.

40
minWordLength?: number

The minimum length of a word before checking it against a dictionary.

4
numSuggestions?: number

Number of suggestions to make.

10
suggestionNumChanges?: number

The maximum number of changes allowed on a word to be considered a suggestions.

For example, appending an s onto example -> examples is considered 1 change.

Range: between 1 and 5.

3
suggestionsTimeout?: number

The maximum amount of time in milliseconds to generate suggestions for a word.

500