From 3b557ff24c52ba1a33a8fe3d0d989d7d85f1f708 Mon Sep 17 00:00:00 2001 From: Jonas Bushart Date: Sat, 18 Mar 2023 00:09:26 +0100 Subject: [PATCH] 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`. --- rust.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust.json b/rust.json index eba3c5b..cdea8c2 100644 --- a/rust.json +++ b/rust.json @@ -22,7 +22,7 @@ "code": 3 }, { - "regexp": "^([\\s->=]*(.*):(\\d*):(\\d*)|.*)$", + "regexp": "^([\\s\\->=]*(.*):(\\d*):(\\d*)|.*)$", "file": 2, "line": 3, "column": 4