mirror of
https://github.com/conan-io/conan-center-index.git
synced 2025-08-06 18:56:00 +00:00

* linter - testing messages * second part in brackets is optional * Override message for E0611 * use cleaner approach for linter * import both errors * Error if errors imported * revert changes in any-lite
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"problemMatcher": [
|
|
{
|
|
"owner": "recipe_linter_fatals",
|
|
"severity": "error",
|
|
"pattern": [
|
|
{
|
|
"regexp": "(\\S+):(\\d+): \\[(F\\d+\\(\\S+\\)),\\s(.+?)?\\](.+)",
|
|
"file": 1,
|
|
"line": 2,
|
|
"message": 5,
|
|
"code": 3
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"owner": "recipe_linter_errors",
|
|
"severity": "error",
|
|
"pattern": [
|
|
{
|
|
"regexp": "(\\S+):(\\d+): \\[(E\\d+\\(\\S+\\)),\\s(.+?)?\\](.+)",
|
|
"file": 1,
|
|
"line": 2,
|
|
"message": 5,
|
|
"code": 3
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"owner": "recipe_linter_warnings",
|
|
"severity": "warning",
|
|
"pattern": [
|
|
{
|
|
"regexp": "(\\S+):(\\d+): \\[(W\\d+\\(\\S+\\)),\\s(.+?)?\\](.+)",
|
|
"file": 1,
|
|
"line": 2,
|
|
"message": 5,
|
|
"code": 3
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|