Undefined scope comment

This commit is contained in:
Oliver Cooper 2021-09-09 08:50:24 +12:00 committed by GitHub
parent 001608914b
commit d246a5f58b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -111,6 +111,8 @@ export async function buildCargoTask(
return new vscode.Task(
definition,
// scope can sometimes be undefined. in these situations we default to the workspace taskscope as
// recommended by the official docs: https://code.visualstudio.com/api/extension-guides/task-provider#task-provider)
scope ?? vscode.TaskScope.Workspace,
name,
TASK_SOURCE,