Compare commits

..

6 Commits

Author SHA1 Message Date
5689bbdcd0 Update csc.json 2019-10-10 17:27:21 -04:00
39bfcfef74 Update csc.json 2019-10-10 17:25:06 -04:00
893aeb5420 Fix my missing quote 2019-10-10 15:05:42 -04:00
b90f08a647 Using correct msCompile regex 2019-10-10 15:01:09 -04:00
d9c317d9d5 Revert "Fixed matcher regex"
This reverts commit c61e78b585.
2019-10-10 14:51:48 -04:00
c61e78b585 Fixed matcher regex 2019-10-10 14:48:45 -04:00

5
.github/csc.json vendored
View File

@ -4,12 +4,13 @@
"owner": "csc",
"pattern": [
{
"regexp": "^([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(CS\\d+)\\s*:\\s*(.*)$",
"regexp": "^(?:\\s+\\d+\\>)?([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\)\\s*:\\s+(error|warning|info)\\s+(\\w{1,2}\\d+)\\s*:\\s*(.*)(\\[(.+)\\/([^\\/]+)\\])$",
"file": 1,
"location": 2,
"severity": 3,
"code": 4,
"message": 5
"message": 5,
"fromPath": 7
}
]
}