From b581a3ca24466b62eda1b0a939e4a9aef3bafcba Mon Sep 17 00:00:00 2001 From: mrjones2014 <8648891+mrjones2014@users.noreply.github.com> Date: Sat, 19 Sep 2026 05:15:43 +0000 Subject: [PATCH] chore(build): Update schemas --- after/codesettings-schemas/elmls.json | 2 +- after/codesettings-schemas/jdtls.json | 3 ++- after/codesettings-schemas/sourcekit.json | 2 ++ lua/codesettings/generated/annotations.lua | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/after/codesettings-schemas/elmls.json b/after/codesettings-schemas/elmls.json index d83fa4b..683371c 100644 --- a/after/codesettings-schemas/elmls.json +++ b/after/codesettings-schemas/elmls.json @@ -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" }, diff --git a/after/codesettings-schemas/jdtls.json b/after/codesettings-schemas/jdtls.json index 438f35e..ef677de 100644 --- a/after/codesettings-schemas/jdtls.json +++ b/after/codesettings-schemas/jdtls.json @@ -460,7 +460,8 @@ "JavaSE-23", "JavaSE-24", "JavaSE-25", - "JavaSE-26" + "JavaSE-26", + "JavaSE-27" ], "type": "string" }, diff --git a/after/codesettings-schemas/sourcekit.json b/after/codesettings-schemas/sourcekit.json index 40ab1ce..7faa30d 100644 --- a/after/codesettings-schemas/sourcekit.json +++ b/after/codesettings-schemas/sourcekit.json @@ -597,6 +597,7 @@ }, "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": { @@ -604,6 +605,7 @@ "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": { diff --git a/lua/codesettings/generated/annotations.lua b/lua/codesettings/generated/annotations.lua index d841f70..1264a03 100644 --- a/lua/codesettings/generated/annotations.lua +++ b/lua/codesettings/generated/annotations.lua @@ -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. --