Interface ReporterConfiguration

interface ReporterConfiguration {
    debug?: boolean;
    maxDuplicateProblems?: number;
    maxNumberOfProblems?: number;
    minWordLength?: number;
    root?: string;
    unique?: boolean;
    verbose?: boolean;
    wordsOnly?: boolean;
}

Hierarchy

  • ReporterCommandLineOptions
  • ReporterConfigurationBase
    • ReporterConfiguration

Properties

debug?: boolean

Show extensive output.

maxDuplicateProblems?: number

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

Default

5
maxNumberOfProblems?: number

The maximum number of problems to report in a file.

Default

10000
minWordLength?: number

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

Default

4
root?: string

root directory, defaults to cwd

unique?: boolean

unique errors per file only.

verbose?: boolean

Display verbose information

wordsOnly?: boolean

Only report the words, no line numbers or file names.