Skip to content

Commit 07c131f

Browse files
authored
Recognize the "I" pylint stdio message category (#67)
1 parent e802f28 commit 07c131f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pylsp/plugins/pylint_lint.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,7 @@ def _parse_pylint_stdio_result(document, stdout):
280280
'C': lsp.DiagnosticSeverity.Information,
281281
'E': lsp.DiagnosticSeverity.Error,
282282
'F': lsp.DiagnosticSeverity.Error,
283+
'I': lsp.DiagnosticSeverity.Information,
283284
'R': lsp.DiagnosticSeverity.Hint,
284285
'W': lsp.DiagnosticSeverity.Warning,
285286
}

0 commit comments

Comments
 (0)