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 Sep 28, 2024
1 parent 944f30e commit 3b6db0a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
5 changes: 5 additions & 0 deletions schemas/rust_analyzer.json
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,11 @@
"minimum": 0,
"type": "integer"
},
"rust-analyzer.debug.buildBeforeRestart": {
"default": false,
"markdownDescription": "Whether to rebuild the project modules before debugging the same test again",
"type": "boolean"
},
"rust-analyzer.debug.engine": {
"default": "auto",
"description": "Preferred debug engine.",
Expand Down
4 changes: 2 additions & 2 deletions schemas/ts_ls.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"javascript.experimental.updateImportsOnPaste": {
"default": false,
"description": "Automatically update imports when pasting code. Requires TypeScript 5.6+.",
"description": "Automatically update imports when pasting code. Requires TypeScript 5.7+.",
"scope": "window",
"tags": [
"experimental"
Expand Down Expand Up @@ -590,7 +590,7 @@
},
"typescript.experimental.updateImportsOnPaste": {
"default": false,
"description": "Automatically update imports when pasting code. Requires TypeScript 5.6+.",
"description": "Automatically update imports when pasting code. Requires TypeScript 5.7+.",
"scope": "window",
"tags": [
"experimental"
Expand Down
6 changes: 3 additions & 3 deletions schemas/wgls_analyzer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
"type": "boolean"
},
"wgsl-analyzer.diagnostics.nagaVersion": {
"default": "0.11",
"default": "0.22",
"description": "Which version of naga to use for its diagnostics",
"enum": [
"0.12",
"0.13",
"0.14",
"0.19",
"0.22",
"main"
],
"type": "string"
Expand Down
10 changes: 6 additions & 4 deletions types/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13289,6 +13289,8 @@
---@field termSearch _.lspconfig.settings.rust_analyzer.TermSearch

---@class _.lspconfig.settings.rust_analyzer.Debug
-- Whether to rebuild the project modules before debugging the same test again
---@field buildBeforeRestart boolean
-- Preferred debug engine.
--
-- ```lua
Expand Down Expand Up @@ -15651,7 +15653,7 @@
---@field terraform _.lspconfig.settings.terraformls.Terraform

---@class _.lspconfig.settings.ts_ls.Experimental
-- Automatically update imports when pasting code. Requires TypeScript 5.6+.
-- Automatically update imports when pasting code. Requires TypeScript 5.7+.
---@field updateImportsOnPaste boolean

---@class _.lspconfig.settings.ts_ls.Format
Expand Down Expand Up @@ -16069,7 +16071,7 @@
---@class _.lspconfig.settings.ts_ls.Experimental
-- (Experimental) Enable/disable expanding on hover.
---@field expandableHover boolean
-- Automatically update imports when pasting code. Requires TypeScript 5.6+.
-- Automatically update imports when pasting code. Requires TypeScript 5.7+.
---@field updateImportsOnPaste boolean

---@class _.lspconfig.settings.ts_ls.Format
Expand Down Expand Up @@ -18104,9 +18106,9 @@
-- Which version of naga to use for its diagnostics
--
-- ```lua
-- default = "0.11"
-- default = "0.22"
-- ```
---@field nagaVersion "0.12" | "0.13" | "0.14" | "main"
---@field nagaVersion "0.14" | "0.19" | "0.22" | "main"
-- Controls whether to show type errors.
--
-- ```lua
Expand Down

0 comments on commit 3b6db0a

Please sign in to comment.