我的项目使用自定义problemMatcher
。但我想将其提取到一个扩展中,使其可配置。所以最终它可以在tasks.json
中使用
{
"problemMatcher": "$myCustomProblemMatcher"
}
怎么做?
答案 0 :(得分:2)
自VSCode 1.11.0(2017年3月)起,extensions can contribute problem matchers via package.json
:
{
"contributes": {
"problemMatchers": [
{
"name": "gcc",
"owner": "cpp",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
]
}
}
然后,任务可以使用"problemMatcher": ["$name"]
(在此示例中为$gcc
)引用它。
不是定义匹配器的pattern
内联,它也可以在problemPatterns
中提供,因此它可以重用(例如,如果你想在多个匹配器中使用它):
{
"contributes": {
"problemPatterns": [
{
"name": "gcc",
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
],
"problemMatchers": [
{
"name": "gcc",
"owner": "cpp",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"pattern": "$gcc"
}
]
}
}