Skip to content

Commit b7fa651

Browse files
committed
Reverted regex pattern
1 parent c44c78a commit b7fa651

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

linter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ class Codeclimate(Linter):
3434
)
3535
}
3636

37-
regex = r'^== ((?P<filename>.*)(?= \(\d+ issue\) ==))( \(\d+ issue\) ==\n(?P<line>\d+))(?:-\d+)?:\s(?P<message>.+)$'
38-
multiline = True
37+
regex = r'^(?P<line>\d+)(?:-\d+)?:\s(?P<message>.+)$'
38+
multiline = False
3939
line_col_base = (1, 1)
4040
tempfile_suffix = '-'
4141
error_stream = util.STREAM_BOTH

0 commit comments

Comments
 (0)