mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 01:25:36 -05:00
* Fix initial build breaks from 1.67 merge (#2514) * Update yarn lock files * Update build scripts * Fix tsconfig * Build breaks * WIP * Update yarn lock files * Misc breaks * Updates to package.json * Breaks * Update yarn * Fix breaks * Breaks * Build breaks * Breaks * Breaks * Breaks * Breaks * Breaks * Missing file * Breaks * Breaks * Breaks * Breaks * Breaks * Fix several runtime breaks (#2515) * Missing files * Runtime breaks * Fix proxy ordering issue * Remove commented code * Fix breaks with opening query editor * Fix post merge break * Updates related to setup build and other breaks (#2516) * Fix bundle build issues * Update distro * Fix distro merge and update build JS files * Disable pipeline steps * Remove stats call * Update license name * Make new RPM dependencies a warning * Fix extension manager version checks * Update JS file * Fix a few runtime breaks * Fixes * Fix runtime issues * Fix build breaks * Update notebook tests (part 1) * Fix broken tests * Linting errors * Fix hygiene * Disable lint rules * Bump distro * Turn off smoke tests * Disable integration tests * Remove failing "activate" test * Remove failed test assertion * Disable other broken test * Disable query history tests * Disable extension unit tests * Disable failing tasks
163 lines
4.4 KiB
JSON
163 lines
4.4 KiB
JSON
{
|
|
"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",
|
|
"onCommand:json.clearCache"
|
|
],
|
|
"main": "./client/out/node/jsonClientMain",
|
|
"browser": "./client/dist/browser/jsonClientMain",
|
|
"capabilities": {
|
|
"virtualWorkspaces": true,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"compile": "npx gulp compile-extension:json-language-features-client compile-extension:json-language-features-server",
|
|
"watch": "npx gulp watch-extension:json-language-features-client watch-extension:json-language-features-server",
|
|
"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": {
|
|
"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%"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"json.validate.enable": {
|
|
"type": "boolean",
|
|
"scope": "window",
|
|
"default": true,
|
|
"description": "%json.validate.enable.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.schemaDownload.enable": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%json.enableSchemaDownload.desc%",
|
|
"tags": [
|
|
"usesOnlineServices"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"configurationDefaults": {
|
|
"[json]": {
|
|
"editor.quickSuggestions": {
|
|
"strings": true
|
|
},
|
|
"editor.suggest.insertMode": "replace"
|
|
},
|
|
"[jsonc]": {
|
|
"editor.quickSuggestions": {
|
|
"strings": true
|
|
},
|
|
"editor.suggest.insertMode": "replace"
|
|
}
|
|
},
|
|
"jsonValidation": [
|
|
{
|
|
"fileMatch": "*.schema.json",
|
|
"url": "http://json-schema.org/draft-07/schema#"
|
|
}
|
|
],
|
|
"commands": [
|
|
{
|
|
"command": "json.clearCache",
|
|
"title": "%json.command.clearCache%",
|
|
"category": "JSON"
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@vscode/extension-telemetry": "0.5.0",
|
|
"request-light": "^0.5.8",
|
|
"vscode-languageclient": "^7.0.0",
|
|
"vscode-nls": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "16.x"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|