vscode/extensions/css-language-features/schemas/package.schema.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
857 B
JSON
Raw Normal View History

2019-09-03 16:19:56 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
2019-09-03 16:19:56 +00:00
"title": "CSS contributions to package.json",
"type": "object",
"properties": {
"contributes": {
"type": "object",
"properties": {
"css.customData": {
"type": "array",
2020-09-15 23:13:49 +00:00
"markdownDescription": "A list of relative file paths pointing to JSON files following the [custom data format](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md).\n\nVS Code loads custom data on startup to enhance its CSS support for the custom CSS properties, at directives, pseudo classes and pseudo elements you specify in the JSON files.\n\nThe file paths are relative to workspace and only workspace folder settings are considered.",
2019-09-03 16:19:56 +00:00
"items": {
"type": "string",
"description": "Relative path to a CSS custom data file"
}
}
}
}
}
}