severity property

String? severity
getter/setter pair

The severity of the issue. Possible string values are:

  • "SEVERITY_UNSPECIFIED" : An unspecified severity.
  • "DEPRECATION" : Deprecation issue for statements and method that may no longer be supported or maintained.
  • "WARNING" : Warnings such as: unused variables.
  • "ERROR" : Errors such as: unmatched curly braces or variable redefinition.

Implementation

core.String? severity;