You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a gruntfile with a linter task and I'd like to attach a problem matcher with the auto detected task. I haven't found a way to do so, e.g., I cannot generate a corresponding task.json from the gruntfile since all tasks are auto detected.
The text was updated successfully, but these errors were encountered:
the generated task is specific to a tool (for example the Java extension generates a task to compile Java files). In this case the extension can already attach a problem matcher to the generated task
the generated task is for a task runner (like gulp or grunt). In this case the code that generates the task can't attach a problem matcher. So we need to allow users to decorate the task in the tasks.json with a problem matcher.
Testing #25299
I have a gruntfile with a linter task and I'd like to attach a problem matcher with the auto detected task. I haven't found a way to do so, e.g., I cannot generate a corresponding task.json from the gruntfile since all tasks are auto detected.
The text was updated successfully, but these errors were encountered: