Add Problem Matcher for Log-Only output format.

This commit is contained in:
Michael J Mulligan 2021-04-07 19:41:59 +01:00
parent 984bec9da3
commit 2941a79185

17
dist/matchers-golangci-lint-action.json vendored Normal file
View file

@ -0,0 +1,17 @@
{
"problemMatcher": [
{
"owner": "golangci-lint-action",
"pattern": [
{
"regexp": "^\\s*(\\.{0,2}[\\/\\\\].+\\.go):(?:(\\d+):(\\d+):)? (.*)",
"severity": 1,
"file": 2,
"line": 3,
"column": 4,
"message": 5
}
]
}
]
}