Skip to content

LintSeverity

type LintSeverity =
    | AlwaysWarning
    | AlwaysError
    | WarningWhileWatching
AssemblyNacara.Plugin.Linter.Rumdl

When a lint finding stops a build.

Cases

AlwaysWarning

Findings are warnings, whatever the build is.

AlwaysError

Findings are errors, whatever the build is.

WarningWhileWatching

A warning while watching, an error when building - the default.

Properties

member IsAlwaysError: bool
member IsAlwaysWarning: bool
member IsWarningWhileWatching: bool