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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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
}
]
}
]
}