Merge pull request #508 from revarbat/revarbat_dev

Try to make problem matchers useful.
This commit is contained in:
Revar Desmera 2021-04-17 03:29:31 -07:00 committed by GitHub
commit 1c3acc6cbc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,11 +4,11 @@
"owner": "docsgen",
"pattern": [
{
"regexp": "^!! (WARNING|ERROR) at ([^:]+):(\\d+): (.*[^:])$",
"severity": 1,
"file": 2,
"line": 3,
"message": 4
"regexp": "^!! ((WARNING|ERROR) at ([^:]+):(\\d+): .*[^:])$",
"message": 1,
"severity": 2,
"file": 3,
"line": 4
}
]
}