mirror of
https://github.com/shivammathur/setup-php.git
synced 2025-01-19 23:01:43 +07:00
30 lines
611 B
JSON
30 lines
611 B
JSON
|
{
|
||
|
"problemMatcher": [
|
||
|
{
|
||
|
"owner": "php_native_error",
|
||
|
"severity": "error",
|
||
|
"pattern": [
|
||
|
{
|
||
|
"regexp": "^(.*error):\\s+\\s+(.+) in (.+) on line (\\d+)$",
|
||
|
"code": 1,
|
||
|
"message": 2,
|
||
|
"file": 3,
|
||
|
"line": 4
|
||
|
}
|
||
|
]
|
||
|
}, {
|
||
|
"owner": "php_native_warning",
|
||
|
"severity": "warning",
|
||
|
"pattern": [
|
||
|
{
|
||
|
"regexp": "^(.*Warning|.*Deprecated|.*Notice):\\s+\\s+(.+) in (.+) on line (\\d+)$",
|
||
|
"code": 1,
|
||
|
"message": 2,
|
||
|
"file": 3,
|
||
|
"line": 4
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|