Skip to content

Commit

Permalink
include error codes
Browse files Browse the repository at this point in the history
  • Loading branch information
braver committed Jan 9, 2018
1 parent f81cf86 commit 75cbe64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Pylint(PythonLinter):
version_requirement = '>= 1.0'
regex = (
r'^(?P<line>\d+):(?P<col>\d+):'
r'(?P<code>(?:(?P<error>[FE])|(?P<warning>[CIWR]))\d+): '
r'(?P<code>(?:(?P<error>[FE]\d+)|(?P<warning>[CIWR]\d+))): '
r'(?P<message>.*?)(?:\r?$)'
)
multiline = True
Expand Down

0 comments on commit 75cbe64

Please sign in to comment.