mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-05 09:36:19 +00:00
953b94fd08
- Add a basic problem matcher for illuaminate errors. - Add a script (tools/parse-reports.py) which parses the XML reports generated by checkstyle and junit, extracts source locations, and emits them in a manner which can be consumed by another set of matchers. This should make it a little easier to see problems for folks who just rely on CI to test things (though also, please don't do this if you can help it).
18 lines
403 B
JSON
18 lines
403 B
JSON
{
|
|
"problemMatcher": [
|
|
{
|
|
"owner": "checkstyle",
|
|
"pattern": [
|
|
{
|
|
"regexp": "^([a-z]+) ([\\w./-]+):(\\d+):(\\d+): (.*)$",
|
|
"severity": 1,
|
|
"file": 2,
|
|
"line": 3,
|
|
"column": 4,
|
|
"message": 5
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|