mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-06-12 15:11:11 +00:00
feat: allow folder of problem matcher registration
Allows registering of new problem matchers by adding them to folder
This commit is contained in:
parent
59e61b8951
commit
f87656b688
5 changed files with 14 additions and 12 deletions
18
matchers/eslint-compact.json
Normal file
18
matchers/eslint-compact.json
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"problemMatcher": [
|
||||
{
|
||||
"owner": "eslint-compact",
|
||||
"pattern": [
|
||||
{
|
||||
"regexp": "^(.+):\\sline\\s(\\d+),\\scol\\s(\\d+),\\s(Error|Warning|Info)\\s-\\s(.+)\\s\\((.+)\\)$",
|
||||
"file": 1,
|
||||
"line": 2,
|
||||
"column": 3,
|
||||
"severity": 4,
|
||||
"message": 5,
|
||||
"code": 6
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue