Compare commits

...

4 Commits

Author SHA1 Message Date
Tingluo Huang 5689bbdcd0
Update csc.json 2019-10-10 17:27:21 -04:00
Tingluo Huang 39bfcfef74
Update csc.json 2019-10-10 17:25:06 -04:00
Chris Patterson 893aeb5420
Fix my missing quote 2019-10-10 15:05:42 -04:00
Chris Patterson b90f08a647
Using correct msCompile regex 2019-10-10 15:01:09 -04:00
1 changed files with 4 additions and 3 deletions

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
}
]
}