feat: rewrite format handling (#1038)

This commit is contained in:
Ludovic Fernandez
2024-05-07 01:40:17 +02:00
committed by GitHub
parent d36b91c294
commit 789f114c52
6 changed files with 91 additions and 43 deletions

17
problem-matchers.json Normal file
View File

@@ -0,0 +1,17 @@
{
"problemMatcher": [
{
"owner": "golangci-lint-colored-line-number",
"severity": "error",
"pattern": [
{
"regexp": "^([^:]+):(\\d+):(?:(\\d+):)?\\s+(.+ \\(.+\\))$",
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
]
}
]
}