Skip to main content

GmLintSeverity

How much a finding is worth doing something about. Only ERROR is ever eligible to gate anything; WARNING is reported and never enforced, because ordinary authoring is transiently inconsistent and a gate that fought it would be worse than the problem.

enum GmLintSeverity {
ERROR
WARNING
}

Values

GmLintSeverity.ERROR

Provably broken. No reading of the app makes this fine, and the platform can say so without knowing your intent.

GmLintSeverity.WARNING

Suspicious and frequently correct anyway — most often because you are mid-edit and the other half is not written yet.

Member Of

GmLintFindingType object