-
Notifications
You must be signed in to change notification settings - Fork 911
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Merge from vscode a416c77 * distro * fix tests * fix tests
- Loading branch information
Anthony Dresser
authored
Dec 8, 2019
1 parent
a7ff238
commit d614116
Showing
155 changed files
with
1,980 additions
and
1,597 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,4 @@ Supported image formats: | |
- `*.bmp` | ||
- `*.gif` | ||
- `*.ico` | ||
- `*.tga` | ||
- `*.webp` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,113 +1,125 @@ | ||
{ | ||
"name": "json-language-features", | ||
"displayName": "%displayName%", | ||
"description": "%description%", | ||
"version": "1.0.0", | ||
"publisher": "vscode", | ||
"license": "MIT", | ||
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217", | ||
"engines": { | ||
"vscode": "0.10.x" | ||
}, | ||
"icon": "icons/json.png", | ||
"activationEvents": [ | ||
"onLanguage:json", | ||
"onLanguage:jsonc" | ||
], | ||
"main": "./client/out/jsonMain", | ||
"enableProposedApi": true, | ||
"scripts": { | ||
"compile": "gulp compile-extension:json-language-features-client compile-extension:json-language-features-server", | ||
"watch": "gulp watch-extension:json-language-features-client watch-extension:json-language-features-server", | ||
"postinstall": "cd server && yarn install", | ||
"install-client-next": "yarn add vscode-languageclient@next" | ||
}, | ||
"categories": [ | ||
"Programming Languages" | ||
], | ||
"contributes": { | ||
"configuration": { | ||
"id": "json", | ||
"order": 20, | ||
"type": "object", | ||
"title": "JSON", | ||
"properties": { | ||
"json.schemas": { | ||
"type": "array", | ||
"scope": "resource", | ||
"description": "%json.schemas.desc%", | ||
"items": { | ||
"name": "json-language-features", | ||
"displayName": "%displayName%", | ||
"description": "%description%", | ||
"version": "1.0.0", | ||
"publisher": "vscode", | ||
"license": "MIT", | ||
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217", | ||
"engines": { | ||
"vscode": "0.10.x" | ||
}, | ||
"icon": "icons/json.png", | ||
"activationEvents": [ | ||
"onLanguage:json", | ||
"onLanguage:jsonc" | ||
], | ||
"main": "./client/out/jsonMain", | ||
"enableProposedApi": true, | ||
"scripts": { | ||
"compile": "gulp compile-extension:json-language-features-client compile-extension:json-language-features-server", | ||
"watch": "gulp watch-extension:json-language-features-client watch-extension:json-language-features-server", | ||
"postinstall": "cd server && yarn install", | ||
"install-client-next": "yarn add vscode-languageclient@next" | ||
}, | ||
"categories": [ | ||
"Programming Languages" | ||
], | ||
"contributes": { | ||
"configuration": { | ||
"id": "json", | ||
"order": 20, | ||
"type": "object", | ||
"default": { | ||
"fileMatch": [ | ||
"/myfile" | ||
], | ||
"url": "schemaURL" | ||
}, | ||
"title": "JSON", | ||
"properties": { | ||
"url": { | ||
"type": "string", | ||
"default": "/user.schema.json", | ||
"description": "%json.schemas.url.desc%" | ||
}, | ||
"fileMatch": { | ||
"type": "array", | ||
"items": { | ||
"type": "string", | ||
"default": "MyFile.json", | ||
"description": "%json.schemas.fileMatch.item.desc%" | ||
"json.schemas": { | ||
"type": "array", | ||
"scope": "resource", | ||
"description": "%json.schemas.desc%", | ||
"items": { | ||
"type": "object", | ||
"default": { | ||
"fileMatch": [ | ||
"/myfile" | ||
], | ||
"url": "schemaURL" | ||
}, | ||
"properties": { | ||
"url": { | ||
"type": "string", | ||
"default": "/user.schema.json", | ||
"description": "%json.schemas.url.desc%" | ||
}, | ||
"fileMatch": { | ||
"type": "array", | ||
"items": { | ||
"type": "string", | ||
"default": "MyFile.json", | ||
"description": "%json.schemas.fileMatch.item.desc%" | ||
}, | ||
"minItems": 1, | ||
"description": "%json.schemas.fileMatch.desc%" | ||
}, | ||
"schema": { | ||
"$ref": "http://json-schema.org/draft-07/schema#", | ||
"description": "%json.schemas.schema.desc%" | ||
} | ||
} | ||
} | ||
}, | ||
"minItems": 1, | ||
"description": "%json.schemas.fileMatch.desc%" | ||
}, | ||
"schema": { | ||
"$ref": "http://json-schema.org/draft-07/schema#", | ||
"description": "%json.schemas.schema.desc%" | ||
} | ||
"json.format.enable": { | ||
"type": "boolean", | ||
"scope": "window", | ||
"default": true, | ||
"description": "%json.format.enable.desc%" | ||
}, | ||
"json.trace.server": { | ||
"type": "string", | ||
"scope": "window", | ||
"enum": [ | ||
"off", | ||
"messages", | ||
"verbose" | ||
], | ||
"default": "off", | ||
"description": "%json.tracing.desc%" | ||
}, | ||
"json.colorDecorators.enable": { | ||
"type": "boolean", | ||
"scope": "window", | ||
"default": true, | ||
"description": "%json.colorDecorators.enable.desc%", | ||
"deprecationMessage": "%json.colorDecorators.enable.deprecationMessage%" | ||
}, | ||
"json.maxItemsComputed": { | ||
"type": "number", | ||
"default": 5000, | ||
"description": "%json.maxItemsComputed.desc%" | ||
} | ||
} | ||
} | ||
}, | ||
"json.format.enable": { | ||
"type": "boolean", | ||
"scope": "window", | ||
"default": true, | ||
"description": "%json.format.enable.desc%" | ||
}, | ||
"json.trace.server": { | ||
"type": "string", | ||
"scope": "window", | ||
"enum": [ | ||
"off", | ||
"messages", | ||
"verbose" | ||
], | ||
"default": "off", | ||
"description": "%json.tracing.desc%" | ||
}, | ||
"json.colorDecorators.enable": { | ||
"type": "boolean", | ||
"scope": "window", | ||
"default": true, | ||
"description": "%json.colorDecorators.enable.desc%", | ||
"deprecationMessage": "%json.colorDecorators.enable.deprecationMessage%" | ||
"configurationDefaults": { | ||
"[json]": { | ||
"editor.quickSuggestions": { | ||
"strings": true | ||
}, | ||
"editor.suggest.insertMode": "replace" | ||
}, | ||
"[jsonc]": { | ||
"editor.quickSuggestions": { | ||
"strings": true | ||
}, | ||
"editor.suggest.insertMode": "replace" | ||
} | ||
} | ||
} | ||
}, | ||
"configurationDefaults": { | ||
"[json]": { | ||
"editor.quickSuggestions": { | ||
"strings": true | ||
} | ||
} | ||
"dependencies": { | ||
"request-light": "^0.2.5", | ||
"vscode-extension-telemetry": "0.1.1", | ||
"vscode-languageclient": "^6.0.0-next.3", | ||
"vscode-nls": "^4.1.1" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^12.11.7" | ||
} | ||
}, | ||
"dependencies": { | ||
"request-light": "^0.2.5", | ||
"vscode-extension-telemetry": "0.1.1", | ||
"vscode-languageclient": "^6.0.0-next.3", | ||
"vscode-nls": "^4.1.1" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^12.11.7" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.