mirror of
https://github.com/android-actions/setup-android
synced 2024-11-22 13:29:35 -08:00
19 lines
533 B
JSON
19 lines
533 B
JSON
{
|
|
// Example:
|
|
// /path/to/file/file.class: Warning: checkClientTrusted is empty, which could cause insecure network traffic due to trusting arbitrary TLS/SSL certificates presented by peers [TrustAllX509TrustManager]
|
|
"problemMatcher": [
|
|
{
|
|
"owner": "android-lint-file",
|
|
"pattern": [
|
|
{
|
|
"regexp": "^(.+):\\s+(Warning|Error):\\s+(.+)\\s+\\[(.+)\\]$",
|
|
"file": 1,
|
|
"severity": 2,
|
|
"message": 3,
|
|
"code": 4,
|
|
"kind": "file"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|