Skip to content

Commit

Permalink
Add more problem matchers
Browse files Browse the repository at this point in the history
  • Loading branch information
kberzinch committed Apr 20, 2024
1 parent bc7fd56 commit 0acb909
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion ci/matcher.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"problemMatcher": [
{
"owner": "detekt",
"owner": "lint",
"pattern": [
{
"regexp": "^\\/home\\/runner\\/work\\/apiary-mobile\\/apiary-mobile\\/([\\/a-zA-Z-\\\\.]+):(\\d+):\\s+([a-zA-Z]+):\\s+(.+)$",
Expand All @@ -11,6 +11,35 @@
"message": 4
}
]
},
{
"owner": "manifest",
"pattern": [
{
"regexp": "^\\/home\\/runner\\/work\\/apiary-mobile\\/apiary-mobile\\/([\\/a-zA-Z\\\\.]+):(\\d+):(\\d+)-\\d+:\\d+\\s+([a-zA-Z]+):$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4
},
{
"regexp": "^\t(.+)$",
"message": 1
}
]
},
{
"owner": "compiler",
"severity": "warning",
"pattern": [
{
"regexp": "^w: \\/home\\/runner\\/work\\/apiary-mobile\\/apiary-mobile\\/([\\/a-zA-Z\\\\.]+): \\((\\d+), (\\d+)\\): (.+)$",
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
]
}
]
}

0 comments on commit 0acb909

Please sign in to comment.