Skip to content

Commit

Permalink
Update rust.json
Browse files Browse the repository at this point in the history
The regex for the problem matcher is invalid, since the `-` creates a range. But the range is invalid, since it cannot start with `\s`.
  • Loading branch information
jonasbb authored Mar 17, 2023
1 parent 64fef3b commit 3b557ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"code": 3
},
{
"regexp": "^([\\s->=]*(.*):(\\d*):(\\d*)|.*)$",
"regexp": "^([\\s\\->=]*(.*):(\\d*):(\\d*)|.*)$",
"file": 2,
"line": 3,
"column": 4
Expand Down

0 comments on commit 3b557ff

Please sign in to comment.