mirror of
https://github.com/android-actions/setup-android
synced 2024-11-22 21:39:34 -08:00
20 lines
395 B
JSON
20 lines
395 B
JSON
|
{
|
||
|
// Example:
|
||
|
// e: /path/to/file/KotlinFile.kt: (14, 5): Val cannot be reassigned
|
||
|
"problemMatcher": [
|
||
|
{
|
||
|
"owner": "kotlin-error",
|
||
|
"pattern": [
|
||
|
{
|
||
|
"regexp": "^e:\\s+(\\S+):\\s+\\((\\d+),\\s+(\\d+)\\):\\s+(.+)$",
|
||
|
"file": 1,
|
||
|
"line": 2,
|
||
|
"column": 3,
|
||
|
"message": 4
|
||
|
}
|
||
|
],
|
||
|
"severity": "error"
|
||
|
}
|
||
|
]
|
||
|
}
|