From 0be0eac62441ca6dc6696cff211de66eb36c75f3 Mon Sep 17 00:00:00 2001 From: Nurit Shahar <43785095+nuritsha@users.noreply.github.com> Date: Thu, 12 Sep 2024 13:54:24 +0300 Subject: [PATCH] Create checkstyle-problem-matcher.json --- .github/checkstyle-problem-matcher.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/checkstyle-problem-matcher.json diff --git a/.github/checkstyle-problem-matcher.json b/.github/checkstyle-problem-matcher.json new file mode 100644 index 00000000..5c6ce669 --- /dev/null +++ b/.github/checkstyle-problem-matcher.json @@ -0,0 +1,23 @@ +{ + "problemMatcher": [ + { + "owner": "phpcs", + "severity": "error", + "pattern": [ + { + "regexp": "^$", + "file": 1 + }, + { + "regexp": "+)$", + "line": 1, + "column": 2, + "severity": 3, + "message": 4, + "code": 5, + "loop": true + } + ] + } + ] +}