mirror of
https://github.com/android-actions/setup-android
synced 2024-11-22 13:29:35 -08:00
19 lines
395 B
JSON
19 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"
|
|
}
|
|
]
|
|
}
|