feat: add problem matcher file for dotnet-format

This commit is contained in:
Nogic 2025-01-13 20:37:11 +09:00
parent 87b7050bc5
commit 0dbcf760bf

19
.github/dotnet-format.json vendored Normal file
View File

@ -0,0 +1,19 @@
{
"problemMatcher": [
{
"owner": "dotnet-format",
"pattern": [
{
"regexp": "^\\s*(.*)\\((\\d+),(\\d+)\\):\\s+(error|warning|info)\\s+:\\s+(.*)\\s+\\[(.+)\\]$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"code": 5,
"message": 6,
"fromPath": 7
}
]
}
]
}