Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion after/codesettings-schemas/elmls.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"properties": {
"elmLS.disableElmLSDiagnostics": {
"default": false,
"description": "Disable linting diagnostics from the language server.",
"description": "Disable linting diagnostics from the language server, including elm-analyse checks.",
"scope": "window",
"type": "boolean"
},
Expand Down
3 changes: 2 additions & 1 deletion after/codesettings-schemas/jdtls.json
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,8 @@
"JavaSE-23",
"JavaSE-24",
"JavaSE-25",
"JavaSE-26"
"JavaSE-26",
"JavaSE-27"
],
"type": "string"
},
Expand Down
2 changes: 2 additions & 0 deletions after/codesettings-schemas/sourcekit.json
Original file line number Diff line number Diff line change
Expand Up @@ -597,13 +597,15 @@
},
"markdownDescription": "Arguments to pass to SourceKit-LSP. Keys and values should be provided as individual entries in the list. e.g. `--experimental-feature=show-macro-expansions`",
"order": 2,
"scope": "machine",
"type": "array"
},
"swift.sourcekit-lsp.serverPath": {
"deprecationMessage": "Deprecated: The sourcekit-lsp executable relies on outputs from tools in your current toolchain. If your sourcekit-lsp version does not match your toolchain you may experience unexpected behaviour. Only modify this setting when developing sourcekit-lsp.",
"markdownDeprecationMessage": "**Deprecated**: The sourcekit-lsp executable relies on outputs from tools in your current toolchain. If your sourcekit-lsp version does not match your toolchain you may experience unexpected behaviour. Only modify this setting when developing sourcekit-lsp.",
"markdownDescription": "The path of the `sourcekit-lsp` executable. The default is to look in the path where `swift` is found.",
"order": 1,
"scope": "machine",
"type": "string"
},
"swift.sourcekit-lsp.supported-languages": {
Expand Down
2 changes: 1 addition & 1 deletion lua/codesettings/generated/annotations.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2878,7 +2878,7 @@
---@field server "off" | "messages" | "verbose"?

---@class lsp.elmls.ElmLS
-- Disable linting diagnostics from the language server.
-- Disable linting diagnostics from the language server, including elm-analyse checks.
---@field disableElmLSDiagnostics boolean?
-- The path to your elm-format executable. Should be empty by default, in that case it will assume the name and try to first get it from a local npm installation or a global one. If you set it manually it will not try to load from the npm folder.
--
Expand Down
Loading