Skip to content

Commit

Permalink
chore(build): auto-generate vimdoc, schemas and annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 21, 2024
1 parent 30b4b1c commit 59b5aa9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 46 deletions.
6 changes: 6 additions & 0 deletions schemas/dartls.json
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,12 @@
"scope": "resource",
"type": "boolean"
},
"dart.enablePub": {
"default": true,
"description": "Whether to enable functionality for using Pub. Turning this setting off will prevent the extension from ever running pub and hide all commands relating to this. Use this if you are using an alternative package manager.",
"scope": "window",
"type": "boolean"
},
"dart.enableSdkFormatter": {
"default": true,
"markdownDescription": "Whether to enable the [dart_style](https://pub.dev/packages/dart_style) formatter for Dart code.",
Expand Down
34 changes: 0 additions & 34 deletions schemas/tsserver.json
Original file line number Diff line number Diff line change
Expand Up @@ -312,23 +312,6 @@
"markdownDescription": "Sort numeric strings by integer value",
"type": "boolean"
},
"presets": {
"default": "auto",
"enum": [
"auto",
"eslint sort-imports",
"eslint plugin-simple-import-sort",
"dprint"
],
"markdownDescription": "%typescript.preferences.organizeImports.presets%",
"markdownEnumDescriptions": [
"%typescript.preferences.organizeImports.presets.auto%",
"%typescript.preferences.organizeImports.presets.eslintSortImports%",
"%typescript.preferences.organizeImports.presets.eslintPluginSimpleImportSort%",
"%typescript.preferences.organizeImports.presets.dprint%"
],
"type": "string"
},
"typeOrder": {
"default": "auto",
"enum": [
Expand Down Expand Up @@ -947,23 +930,6 @@
"markdownDescription": "Sort numeric strings by integer value",
"type": "boolean"
},
"presets": {
"default": "auto",
"enum": [
"auto",
"eslint sort-imports",
"eslint plugin-simple-import-sort",
"dprint"
],
"markdownDescription": "%typescript.preferences.organizeImports.presets%",
"markdownEnumDescriptions": [
"%typescript.preferences.organizeImports.presets.auto%",
"%typescript.preferences.organizeImports.presets.eslintSortImports%",
"%typescript.preferences.organizeImports.presets.eslintPluginSimpleImportSort%",
"%typescript.preferences.organizeImports.presets.dprint%"
],
"type": "string"
},
"typeOrder": {
"default": "auto",
"enum": [
Expand Down
18 changes: 6 additions & 12 deletions types/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1153,6 +1153,12 @@
---@field documentation "full" | "summary" | "none"
-- Whether to automatically commit the selected completion item when pressing certain keys such as . , ( and \[. This setting does not currently apply to LSP, see `#dart.previewCommitCharacters#`.
---@field enableCompletionCommitCharacters boolean
-- Whether to enable functionality for using Pub. Turning this setting off will prevent the extension from ever running pub and hide all commands relating to this. Use this if you are using an alternative package manager.
--
-- ```lua
-- default = true
-- ```
---@field enablePub boolean
-- Whether to enable the [dart_style](https://pub.dev/packages/dart_style) formatter for Dart code.
--
-- ```lua
Expand Down Expand Up @@ -15123,12 +15129,6 @@
---@field locale string
-- Sort numeric strings by integer value
---@field numericCollation boolean
-- %typescript.preferences.organizeImports.presets%
--
-- ```lua
-- default = "auto"
-- ```
---@field presets "auto" | "eslint sort-imports" | "eslint plugin-simple-import-sort" | "dprint"
-- ```lua
-- default = "auto"
-- ```
Expand Down Expand Up @@ -15546,12 +15546,6 @@
---@field locale string
-- Sort numeric strings by integer value
---@field numericCollation boolean
-- %typescript.preferences.organizeImports.presets%
--
-- ```lua
-- default = "auto"
-- ```
---@field presets "auto" | "eslint sort-imports" | "eslint plugin-simple-import-sort" | "dprint"
-- ```lua
-- default = "auto"
-- ```
Expand Down

0 comments on commit 59b5aa9

Please sign in to comment.