-
Notifications
You must be signed in to change notification settings - Fork 34.9k
Closed
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionalityinsiders-releasedPatch has been released in VS Code InsidersPatch has been released in VS Code Insiderson-testplantasksTask system issuesTask system issues
Milestone
Description
Filing to re-open #29951 which either isn't fixed, or is fixed only for some output that I'm not seeing. I cannot find the kind of output referenced in #29951 (comment)
Does this issue occur when all extensions are disabled?: Yes
- VS Code Version: 1.82.0
- OS Version: macOS 13.4.1
Steps to Reproduce:
- Write a task with a custom problemMatcher, like so:
{ "version": "2.0.0", "tasks": [ { "label": "build-x", "type": "shell", "command": "npm", "args": [ "run", "build", "--watch", "-w", "@lit-labs/x" ], "problemMatcher": [{ "background": { "activeOnStart": true, "endsPattern": "Watching for file changes" } }, "$tsc-watch"], "isBackground": true, "presentation": { "reveal": "always" }, "group": { "kind": "build", "isDefault": true } } ] }
- See an error toast with the text: "There are task errors. See the output for details."
- Click on "Show Output"
- See the following buffer:
Error: the description can't be converted into a problem matcher:
{
"background": {
"activeOnStart": true,
"endsPattern": "Watching for file changes"
}
}
This error message doesn't say what's wrong with the problemMatcher (all fields are optional in the schema, so nothing is obvious to me).
sapegin, whalderman, DetachHead, KotlinIsland, ZhenshengLee and 2 more
Metadata
Metadata
Assignees
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionalityinsiders-releasedPatch has been released in VS Code InsidersPatch has been released in VS Code Insiderson-testplantasksTask system issuesTask system issues