aboutsummaryrefslogtreecommitdiff
path: root/.github/csc.json
diff options
context:
space:
mode:
authorTSRBerry <20988865+TSRBerry@users.noreply.github.com>2023-08-16 22:58:34 +0200
committerGitHub <noreply@github.com>2023-08-16 22:58:34 +0200
commitb12ea343d00d5325c95975afa55a3b1e41986f86 (patch)
treefecce0d1633aa45172f5b421530841934f00c3f9 /.github/csc.json
parentabaa35ad3a7271240b77dadca0aa3627bed242a0 (diff)
Add improved csc problem matcher (#5530)
Diffstat (limited to '.github/csc.json')
-rw-r--r--.github/csc.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/csc.json b/.github/csc.json
new file mode 100644
index 00000000..2b960edd
--- /dev/null
+++ b/.github/csc.json
@@ -0,0 +1,18 @@
+{
+ "problemMatcher": [
+ {
+ "owner": "csc",
+ "pattern": [
+ {
+ "regexp": "^((?:\\\\|/)(?:[^\\\\/:]+(?:\\\\|/))+[^\\\\/]+)\\((\\d+),(\\d+)\\):\\s+([a-zA-Z]+)\\s+([^:]+):\\s+([^[]+)\\s+\\[",
+ "file": 1,
+ "line": 2,
+ "column": 3,
+ "severity": 4,
+ "code": 5,
+ "message": 6
+ }
+ ]
+ }
+ ]
+}