Adding fromPath to csc.json

This commit is contained in:
Stanley Goldman 2019-12-16 11:39:02 -05:00
parent be484e6cb4
commit 6b27526581
No known key found for this signature in database
GPG Key ID: 7728F3B9BD13C8C3

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+(\\w+\\d+)\\s*:\\s*(.*)$",
"regexp": "^([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(\\w+\\d+):\\s*(.*?)\\s+\\[(.*?)\\]$",
"file": 1,
"location": 2,
"severity": 3,
"code": 4,
"message": 5
"message": 5,
"fromPath": 6
}
]
}