scorePenalty property

int get scorePenalty

Points deducted from the category score per occurrence.

Implementation

int get scorePenalty => switch (this) {
  Severity.info => 1,
  Severity.warning => 2,
  Severity.error => 5,
  Severity.critical => 10,
};