We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
oneOf: [ { type: 'string', }, { type: 'object', properties: { kind: { type: 'string', default: 'none', description: nls.localize('JsonSchema.tasks.group.kind', 'The task\'s execution group.') }, isDefault: { type: 'boolean', default: false, description: nls.localize('JsonSchema.tasks.group.isDefault', 'Defines if this task is the default task in the group.') } } }, ], enum: [ { kind: 'build', isDefault: true }, { kind: 'build', isDefault: false }, { kind: 'test', isDefault: true }, { kind: 'test', isDefault: false }, 'build', 'test', 'none' ],
A value like:
"group": { "kind": "build", "isDefault": false }
Is flagged as false.
The text was updated successfully, but these errors were encountered:
microsoft/vscode-json-languageservice@9745e4a
[json] update service (for #29848)
01cbc6d
Thanks for fixing this so quickly
Sorry, something went wrong.
I'm still getting:
But maybe the change's not in yet?
Verified, after git clean and npm i.
git clean
npm i
aeschli
No branches or pull requests
A value like:
Is flagged as false.
The text was updated successfully, but these errors were encountered: