Skip to content

Commit

Permalink
Translate Diagnostic.Kind.NOTE to Security.HINT not WARNING
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed Jan 16, 2025
1 parent daa8132 commit c7949a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public ErrorHintsProvider() {
errorKind2Severity.put(Diagnostic.Kind.ERROR, Severity.ERROR);
errorKind2Severity.put(Diagnostic.Kind.MANDATORY_WARNING, Severity.WARNING);
errorKind2Severity.put(Diagnostic.Kind.WARNING, Severity.WARNING);
errorKind2Severity.put(Diagnostic.Kind.NOTE, Severity.WARNING);
errorKind2Severity.put(Diagnostic.Kind.NOTE, Severity.HINT);
errorKind2Severity.put(Diagnostic.Kind.OTHER, Severity.WARNING);
}

Expand Down

0 comments on commit c7949a1

Please sign in to comment.