This commit is contained in:
@ -0,0 +1,7 @@
|
||||
# Language Features for JSON files
|
||||
|
||||
**Notice:** This extension is bundled with Visual Studio Code. It can be disabled but not uninstalled.
|
||||
|
||||
## Features
|
||||
|
||||
See [JSON in Visual Studio Code](https://code.visualstudio.com/docs/languages/json) to learn about the features of this extension.
|
File diff suppressed because one or more lines are too long
Binary file not shown.
After Width: | Height: | Size: 4.3 KiB |
@ -0,0 +1 @@
|
||||
{"name":"json-language-features","displayName":"%displayName%","description":"%description%","version":"1.0.0","publisher":"vscode","license":"MIT","aiKey":"0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255","engines":{"vscode":"^1.77.0"},"enabledApiProposals":["extensionsAny"],"icon":"icons/json.png","activationEvents":["onLanguage:json","onLanguage:jsonc","onLanguage:snippets"],"main":"./client/dist/node/jsonClientMain","browser":"./client/dist/browser/jsonClientMain","capabilities":{"virtualWorkspaces":true,"untrustedWorkspaces":{"supported":true}},"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.format.keepLines":{"type":"boolean","scope":"window","default":false,"description":"%json.format.keepLines.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"},{"command":"json.sort","title":"%json.command.sort%","category":"JSON"}]},"repository":{"type":"git","url":"https://github.com/microsoft/vscode.git"}}
|
@ -0,0 +1 @@
|
||||
{"displayName":"JSON Language Features","description":"Provides rich language support for JSON files.","json.schemas.desc":"Associate schemas to JSON files in the current project.","json.schemas.url.desc":"A URL or absolute file path to a schema. Can be a relative path (starting with './') in workspace and workspace folder settings.","json.schemas.fileMatch.desc":"An array of file patterns to match against when resolving JSON files to schemas. `*` and '**' can be used as a wildcard. Exclusion patterns can also be defined and start with '!'. A file matches when there is at least one matching pattern and the last matching pattern is not an exclusion pattern.","json.schemas.fileMatch.item.desc":"A file pattern that can contain '*' and '**' to match against when resolving JSON files to schemas. When beginning with '!', it defines an exclusion pattern.","json.schemas.schema.desc":"The schema definition for the given URL. The schema only needs to be provided to avoid accesses to the schema URL.","json.format.enable.desc":"Enable/disable default JSON formatter","json.format.keepLines.desc":"Keep all existing new lines when formatting.","json.validate.enable.desc":"Enable/disable JSON validation.","json.tracing.desc":"Traces the communication between VS Code and the JSON language server.","json.colorDecorators.enable.desc":"Enables or disables color decorators","json.colorDecorators.enable.deprecationMessage":"The setting `json.colorDecorators.enable` has been deprecated in favor of `editor.colorDecorators`.","json.schemaResolutionErrorMessage":"Unable to resolve schema.","json.clickToRetry":"Click to retry.","json.maxItemsComputed.desc":"The maximum number of outline symbols and folding regions computed (limited for performance reasons).","json.maxItemsExceededInformation.desc":"Show notification when exceeding the maximum number of outline symbols and folding regions.","json.enableSchemaDownload.desc":"When enabled, JSON schemas can be fetched from http and https locations.","json.command.clearCache":"Clear Schema Cache","json.command.sort":"Sort Document"}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
||||
{"name":"vscode-json-languageserver","description":"JSON language server","version":"1.3.4","author":"Microsoft Corporation","license":"MIT","engines":{"node":"*"},"bin":{"vscode-json-languageserver":"./bin/vscode-json-languageserver"},"main":"./out/node/jsonServerMain","dependencies":{"@vscode/l10n":"^0.0.18","jsonc-parser":"^3.2.1","request-light":"^0.7.0","vscode-json-languageservice":"^5.4.0","vscode-languageserver":"^10.0.0-next.6","vscode-uri":"^3.0.8"},"devDependencies":{"@types/mocha":"^9.1.1","@types/node":"20.x"},"scripts":{"prepublishOnly":"npm run clean && npm run compile","compile":"npx gulp compile-extension:json-language-features-server","watch":"npx gulp watch-extension:json-language-features-server","clean":"../../../node_modules/.bin/rimraf out","install-service-next":"yarn add vscode-json-languageservice@next","install-service-local":"yarn link vscode-json-languageservice","install-server-next":"yarn add vscode-languageserver@next","install-server-local":"yarn link vscode-languageserver-server","version":"git commit -m \"JSON Language Server $npm_package_version\" package.json"}}
|
Reference in New Issue
Block a user