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
Editors like VS Code support JSON schemas out of the box.
This is done via http://schemastore.org/json/
I expect to not have to provide a $schema to get autocompletion. Just look up the filename.
$schema
Pull from the catalog: API: http://schemastore.org/api/json/catalog.json SRC: https://github.com/SchemaStore/schemastore/blob/master/src/api/json/catalog.json
(See VSC bug)
When you create a .json file (i.e. appsscript.json), you must explicity specify the schema
.json
appsscript.json
(Notice only one autocompletion result)
i.e.
{ "$schema": "http://json.schemastore.org/appsscript" }
Then you'll get autocompletion.
{ "$schema": "http://json.schemastore.org/appsscript", "timeZone": "America/New_York", "dependencies": { }, "exceptionLogging": "STACKDRIVER" }
The text was updated successfully, but these errors were encountered:
probably should fix this upstream?
Sorry, something went wrong.
This should be upstream. I wasn't easily able to find the Settings to solve this.
Settings
In VSCode, it's this:
Code > Preferences > Settings
But that will be a different issue.
I've filed this issue for adding a way to access Preferences > Settings via the menu bar: #359
No branches or pull requests
Expected
Editors like VS Code support JSON schemas out of the box.
This is done via http://schemastore.org/json/
I expect to not have to provide a
$schema
to get autocompletion. Just look up the filename.Pull from the catalog:
API: http://schemastore.org/api/json/catalog.json
SRC: https://github.com/SchemaStore/schemastore/blob/master/src/api/json/catalog.json
(See VSC bug)
Actual
When you create a
.json
file (i.e.appsscript.json
), you must explicity specify the schema(Notice only one autocompletion result)
i.e.
Then you'll get autocompletion.
The text was updated successfully, but these errors were encountered: