Skip to content

Commit

Permalink
Recognize the "I" pylint stdio message category (python-lsp#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wuestengecko committed Aug 4, 2021
1 parent e802f28 commit 07c131f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pylsp/plugins/pylint_lint.py
Expand Up @@ -280,6 +280,7 @@ def _parse_pylint_stdio_result(document, stdout):
'C': lsp.DiagnosticSeverity.Information,
'E': lsp.DiagnosticSeverity.Error,
'F': lsp.DiagnosticSeverity.Error,
'I': lsp.DiagnosticSeverity.Information,
'R': lsp.DiagnosticSeverity.Hint,
'W': lsp.DiagnosticSeverity.Warning,
}
Expand Down

0 comments on commit 07c131f

Please sign in to comment.