From 0dbcf760bf74c361417752a0ba5943e7517f2f00 Mon Sep 17 00:00:00 2001 From: Nogic <24802730+nogic1008@users.noreply.github.com> Date: Mon, 13 Jan 2025 20:37:11 +0900 Subject: [PATCH] feat: add problem matcher file for dotnet-format --- .github/dotnet-format.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/dotnet-format.json diff --git a/.github/dotnet-format.json b/.github/dotnet-format.json new file mode 100644 index 0000000..673d086 --- /dev/null +++ b/.github/dotnet-format.json @@ -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 + } + ] + } + ] +}