Skip to content

Commit 3b557ff

Browse files
authored
Update rust.json
The regex for the problem matcher is invalid, since the `-` creates a range. But the range is invalid, since it cannot start with `\s`.
1 parent 64fef3b commit 3b557ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"code": 3
2323
},
2424
{
25-
"regexp": "^([\\s->=]*(.*):(\\d*):(\\d*)|.*)$",
25+
"regexp": "^([\\s\\->=]*(.*):(\\d*):(\\d*)|.*)$",
2626
"file": 2,
2727
"line": 3,
2828
"column": 4

0 commit comments

Comments
 (0)