You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: schemas/ruff_lsp.json
+15-2Lines changed: 15 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -47,9 +47,22 @@
47
47
},
48
48
"ruff.configuration": {
49
49
"default": null,
50
-
"markdownDescription": "Path to a `ruff.toml` or `pyproject.toml` file to use for configuration. By default, Ruff will discover configuration for each project from the filesystem, mirroring the behavior of the Ruff CLI.\n\n**This setting is used only by the native server.**",
50
+
"markdownDescription": "Configuration overrides for Ruff. See [the documentation](https://docs.astral.sh/ruff/editors/settings/#configuration) for more details.\n\n**This setting is used only by the native server.**",
51
+
"oneOf": [
52
+
{
53
+
"markdownDescription": "Path to a `ruff.toml` or `pyproject.toml` file to use for configuration.",
54
+
"type": "string"
55
+
},
56
+
{
57
+
"markdownDescription": "Inline JSON configuration for Ruff settings (e.g., `{ \"line-length\": 100 }`). *Added in Ruff 0.9.8.*",
Copy file name to clipboardExpand all lines: schemas/ts_ls.json
+2-11Lines changed: 2 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -481,7 +481,7 @@
481
481
},
482
482
"javascript.updateImportsOnPaste.enabled": {
483
483
"default": true,
484
-
"markdownDescription": "Enable updating imports when pasting code. Requires TypeScript 5.7+.\n\nBy default this shows a option to update imports after pasting. You can use the `#editor.pasteAs.preferences#` setting to update imports automatically when pasting: `\"editor.pasteAs.preferences\": [ \"text.updateImports.jsts\" ]`.",
484
+
"markdownDescription": "Automatically update imports when pasting code. Requires TypeScript 5.6+.",
485
485
"scope": "window",
486
486
"type": "boolean"
487
487
},
@@ -584,15 +584,6 @@
584
584
"scope": "window",
585
585
"type": "boolean"
586
586
},
587
-
"typescript.experimental.expandableHover": {
588
-
"default": false,
589
-
"description": "Enable expanding/contracting the hover to reveal more/less information from the TS server.",
"markdownDescription": "Enable updating imports when pasting code. Requires TypeScript 5.7+.\n\nBy default this shows a option to update imports after pasting. You can use the `#editor.pasteAs.preferences#` setting to update imports automatically when pasting: `\"editor.pasteAs.preferences\": [ \"text.updateImports.jsts\" ]`.",
1338
+
"markdownDescription": "Automatically update imports when pasting code. Requires TypeScript 5.6+.",
-- Path to a `ruff.toml` or `pyproject.toml` file to use for configuration. By default, Ruff will discover configuration for each project from the filesystem, mirroring the behavior of the Ruff CLI.
12974
+
-- Configuration overrides for Ruff. See [the documentation](https://docs.astral.sh/ruff/editors/settings/#configuration) for more details.
12975
12975
--
12976
12976
-- **This setting is used only by the native server.**
12977
-
---@field configuration string
12977
+
---@field configuration string|table
12978
12978
-- The preferred method of resolving configuration in the editor with local configuration from `.toml` files.
12979
12979
--
12980
12980
-- **This setting is used only by the native server.**
-- Enable updating imports when pasting code. Requires TypeScript 5.7+.
16753
-
--
16754
-
-- By default this shows a option to update imports after pasting. You can use the `#editor.pasteAs.preferences#` setting to update imports automatically when pasting: `"editor.pasteAs.preferences": [ "text.updateImports.jsts" ]`.
16752
+
-- Automatically update imports when pasting code. Requires TypeScript 5.6+.
16755
16753
--
16756
16754
-- ```lua
16757
16755
-- default = true
@@ -16827,10 +16825,6 @@
16827
16825
-- ```
16828
16826
---@field npmIsInstalled boolean
16829
16827
16830
-
---@class _.lspconfig.settings.ts_ls.Experimental
16831
-
-- Enable expanding/contracting the hover to reveal more/less information from the TS server.
-- Enable updating imports when pasting code. Requires TypeScript 5.7+.
17302
-
--
17303
-
-- By default this shows a option to update imports after pasting. You can use the `#editor.pasteAs.preferences#` setting to update imports automatically when pasting: `"editor.pasteAs.preferences": [ "text.updateImports.jsts" ]`.
17295
+
-- Automatically update imports when pasting code. Requires TypeScript 5.6+.
17304
17296
--
17305
17297
-- ```lua
17306
17298
-- default = true
@@ -17341,7 +17333,6 @@
17341
17333
---@field disableAutomaticTypeAcquisition boolean
17342
17334
-- Enables prompting of users to use the TypeScript version configured in the workspace for Intellisense.
0 commit comments