-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(build): auto-generate vimdoc, schemas and annotations
- Loading branch information
1 parent
a043beb
commit 0e6b0a9
Showing
1 changed file
with
27 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
false | ||
], | ||
"markdownDescription": "Enables or disables the display of code lens information for implementations of items in the code.", | ||
"scope": "window", | ||
"scope": "resource", | ||
"type": "boolean" | ||
}, | ||
"deno.codeLens.references": { | ||
|
@@ -44,7 +44,7 @@ | |
false | ||
], | ||
"markdownDescription": "Enables or disables the display of code lens information for references of items in the code.", | ||
"scope": "window", | ||
"scope": "resource", | ||
"type": "boolean" | ||
}, | ||
"deno.codeLens.referencesAllFunctions": { | ||
|
@@ -54,7 +54,7 @@ | |
false | ||
], | ||
"markdownDescription": "Enables or disables the display of code lens information for all functions in the code.", | ||
"scope": "window", | ||
"scope": "resource", | ||
"type": "boolean" | ||
}, | ||
"deno.codeLens.test": { | ||
|
@@ -83,7 +83,7 @@ | |
"C:\\path\\to\\deno.jsonc" | ||
], | ||
"markdownDescription": "The file path to a configuration file. This is the equivalent to using `--config` on the command line. The path can be either be relative to the workspace, or an absolute path.\n\nIt is recommend you name it `deno.json` or `deno.jsonc`.\n\n**Not recommended to be set globally.**", | ||
"scope": "window", | ||
"scope": "resource", | ||
"type": "string" | ||
}, | ||
"deno.defaultTaskCommand": { | ||
|
@@ -93,7 +93,7 @@ | |
"run" | ||
], | ||
"markdownDescription": "Controls the default action when clicking on a task in the _Deno Tasks sidebar_.", | ||
"scope": "window", | ||
"scope": "resource", | ||
"type": "string" | ||
}, | ||
"deno.disablePaths": { | ||
|
@@ -153,23 +153,26 @@ | |
"C:\\path\\to\\import_map.json" | ||
], | ||
"markdownDescription": "The file path to an import map. This is the equivalent to using `--import-map` on the command line.\n\n[Import maps](https://deno.land/[email protected]/linking_to_external_code/import_maps) provide a way to \"relocate\" modules based on their specifiers. The path can either be relative to the workspace, or an absolute path.\n\n**Not recommended to be set globally.**", | ||
"scope": "window", | ||
"scope": "resource", | ||
"type": "string" | ||
}, | ||
"deno.inlayHints.enumMemberValues.enabled": { | ||
"default": false, | ||
"deprecationMessage": "Use `typescript.inlayHints.enumMemberValues.enabled` and `javascript.inlayHints.enumMemberValues.enabled`.", | ||
"markdownDescription": "Enable/disable inlay hints for enum values.", | ||
"scope": "resource", | ||
"type": "boolean" | ||
}, | ||
"deno.inlayHints.functionLikeReturnTypes.enabled": { | ||
"default": false, | ||
"deprecationMessage": "Use `typescript.inlayHints.functionLikeReturnTypes.enabled` and `javascript.inlayHints.functionLikeReturnTypes.enabled`.", | ||
"markdownDescription": "Enable/disable inlay hints for implicit function return types.", | ||
"scope": "resource", | ||
"type": "boolean" | ||
}, | ||
"deno.inlayHints.parameterNames.enabled": { | ||
"default": "none", | ||
"deprecationMessage": "Use `typescript.inlayHints.parameterNames.enabled` and `javascript.inlayHints.parameterNames.enabled`.", | ||
"enum": [ | ||
"none", | ||
"literals", | ||
|
@@ -186,30 +189,35 @@ | |
}, | ||
"deno.inlayHints.parameterNames.suppressWhenArgumentMatchesName": { | ||
"default": true, | ||
"deprecationMessage": "Use `typescript.inlayHints.parameterNames.suppressWhenArgumentMatchesName` and `javascript.inlayHints.parameterNames.suppressWhenArgumentMatchesName`.", | ||
"markdownDescription": "Do not display an inlay hint when the argument name matches the parameter.", | ||
"scope": "resource", | ||
"type": "boolean" | ||
}, | ||
"deno.inlayHints.parameterTypes.enabled": { | ||
"default": false, | ||
"deprecationMessage": "Use `typescript.inlayHints.parameterTypes.enabled` and `javascript.inlayHints.parameterTypes.enabled`.", | ||
"markdownDescription": "Enable/disable inlay hints for implicit parameter types.", | ||
"scope": "resource", | ||
"type": "boolean" | ||
}, | ||
"deno.inlayHints.propertyDeclarationTypes.enabled": { | ||
"default": false, | ||
"deprecationMessage": "Use `typescript.inlayHints.propertyDeclarationTypes.enabled` and `javascript.inlayHints.propertyDeclarationTypes.enabled`.", | ||
"markdownDescription": "Enable/disable inlay hints for implicit property declarations.", | ||
"scope": "resource", | ||
"type": "boolean" | ||
}, | ||
"deno.inlayHints.variableTypes.enabled": { | ||
"default": false, | ||
"deprecationMessage": "Use `typescript.inlayHints.variableTypes.enabled` and `javascript.inlayHints.variableTypes.enabled`.", | ||
"markdownDescription": "Enable/disable inlay hints for implicit variable types.", | ||
"scope": "resource", | ||
"type": "boolean" | ||
}, | ||
"deno.inlayHints.variableTypes.suppressWhenTypeMatchesName": { | ||
"default": true, | ||
"deprecationMessage": "Use `typescript.inlayHints.variableTypes.suppressWhenTypeMatchesName` and `javascript.inlayHints.variableTypes.suppressWhenTypeMatchesName`.", | ||
"markdownDescription": "Suppress type hints where the variable name matches the implicit type.", | ||
"scope": "resource", | ||
"type": "boolean" | ||
|
@@ -231,7 +239,7 @@ | |
false | ||
], | ||
"markdownDescription": "Controls if linting information will be provided by the Deno Language Server.\n\n**Not recommended to be enabled globally.**", | ||
"scope": "window", | ||
"scope": "resource", | ||
"type": "boolean" | ||
}, | ||
"deno.maxTsServerMemory": { | ||
|
@@ -252,18 +260,20 @@ | |
}, | ||
"deno.suggest.autoImports": { | ||
"default": true, | ||
"scope": "window", | ||
"deprecationMessage": "Use `typescript.suggest.autoImports` and `javascript.suggest.autoImports`.", | ||
"scope": "resource", | ||
"type": "boolean" | ||
}, | ||
"deno.suggest.completeFunctionCalls": { | ||
"default": false, | ||
"scope": "window", | ||
"deprecationMessage": "Use `typescript.suggest.completeFunctionCalls` and `javascript.suggest.completeFunctionCalls`.", | ||
"scope": "resource", | ||
"type": "boolean" | ||
}, | ||
"deno.suggest.imports.autoDiscover": { | ||
"default": true, | ||
"markdownDescription": "If enabled, when new hosts/origins are encountered that support import suggestions, you will be prompted to enable or disable it. Defaults to `true`.", | ||
"scope": "window", | ||
"scope": "resource", | ||
"type": "boolean" | ||
}, | ||
"deno.suggest.imports.hosts": { | ||
|
@@ -274,17 +284,19 @@ | |
"https://deno.land": true | ||
}, | ||
"markdownDescription": "Controls which hosts are enabled for import suggestions.", | ||
"scope": "window", | ||
"scope": "resource", | ||
"type": "object" | ||
}, | ||
"deno.suggest.names": { | ||
"default": true, | ||
"scope": "window", | ||
"deprecationMessage": "Use `typescript.suggest.names` and `javascript.suggest.names`.", | ||
"scope": "resource", | ||
"type": "boolean" | ||
}, | ||
"deno.suggest.paths": { | ||
"default": true, | ||
"scope": "window", | ||
"deprecationMessage": "Use `typescript.suggest.paths` and `javascript.suggest.paths`.", | ||
"scope": "resource", | ||
"type": "boolean" | ||
}, | ||
"deno.testing.args": { | ||
|
@@ -296,7 +308,7 @@ | |
"type": "string" | ||
}, | ||
"markdownDescription": "Arguments to use when running tests via the Test Explorer. Defaults to `[ \"--allow-all\" ]`.", | ||
"scope": "window", | ||
"scope": "resource", | ||
"type": "array" | ||
}, | ||
"deno.tlsCertificate": { | ||
|
@@ -321,7 +333,7 @@ | |
false | ||
], | ||
"markdownDescription": "Controls if code will be type checked with Deno's unstable APIs. This is the equivalent to using `--unstable` on the command line.\n\n**Not recommended to be enabled globally.**", | ||
"scope": "window", | ||
"scope": "resource", | ||
"type": "boolean" | ||
} | ||
} | ||
|