From 2f2efa0d7b786c92c82f5a98dcbc00bba7323555 Mon Sep 17 00:00:00 2001 From: "williambotman[bot]" <107473453+williambotman@users.noreply.github.com> Date: Thu, 24 Nov 2022 11:02:44 +0100 Subject: chore: update generated code (#693) --- lua/mason-schemas/lsp/eslint-lsp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lua') diff --git a/lua/mason-schemas/lsp/eslint-lsp.lua b/lua/mason-schemas/lsp/eslint-lsp.lua index fa15ace0..6ddd4408 100644 --- a/lua/mason-schemas/lsp/eslint-lsp.lua +++ b/lua/mason-schemas/lsp/eslint-lsp.lua @@ -1,3 +1,3 @@ -- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. -- stylua: ignore start -return {properties = {["eslint.alwaysShowStatus"] = {default = false,description = "Always show the ESlint status bar item.",scope = "window",type = "boolean"},["eslint.autoFixOnSave"] = {default = false,deprecationMessage = "The setting is deprecated. Use editor.codeActionsOnSave instead with a source.fixAll.eslint member.",description = "Turns auto fix on save on or off.",scope = "resource",type = "boolean"},["eslint.codeAction.disableRuleComment"] = {additionalProperties = false,default = {commentStyle = "line",enable = true,location = "separateLine"},markdownDescription = "Show disable lint rule in the quick fix menu.",properties = {commentStyle = {default = "line",definition = "The comment style to use when disabling a rule on a specific line.",enum = { "line", "block" },type = "string"},enable = {default = true,description = "Show the disable code actions.",type = "boolean"},location = {default = "separateLine",description = "Configure the disable rule code action to insert the comment on the same line or a new line.",enum = { "separateLine", "sameLine" },type = "string"}},scope = "resource",type = "object"},["eslint.codeAction.showDocumentation"] = {additionalProperties = false,default = {enable = true},markdownDescription = "Show open lint rule documentation web page in the quick fix menu.",properties = {enable = {default = true,description = "Show the documentation code actions.",type = "boolean"}},scope = "resource",type = "object"},["eslint.codeActionsOnSave.mode"] = {default = "all",enum = { "all", "problems" },enumDescriptions = { "Fixes all possible problems in the file. This option might take some time.", "Fixes only reported problems that have non-overlapping textual edits. This option runs a lot faster." },markdownDescription = "Specifies the code action mode. Possible values are 'all' and 'problems'.",scope = "resource",type = "string"},["eslint.codeActionsOnSave.rules"] = {anyOf = { {items = {type = "string"},type = "array"}, {type = "null"} },default = vim.NIL,markdownDescription = "The rules that should be executed when computing the code actions on save or formatting a file. Defaults to the rules configured via the ESLint configuration",scope = "resource"},["eslint.debug"] = {default = false,markdownDescription = "Enables ESLint debug mode (same as `--debug` on the command line)",scope = "window",type = "boolean"},["eslint.enable"] = {default = true,description = "Controls whether eslint is enabled or not.",scope = "resource",type = "boolean"},["eslint.execArgv"] = {anyOf = { {items = {type = "string"},type = "array"}, {type = "null"} },default = vim.NIL,markdownDescription = "Additional exec argv argument passed to the runtime. This can for example be used to control the maximum heap space using --max_old_space_size",scope = "machine-overridable"},["eslint.experimental.useFlatConfig"] = {default = false,description = "Enable support of experimental Flat Config (aka eslint.config.js, supported by ESLint version 8.21 or later).",scope = "resource",type = "boolean"},["eslint.format.enable"] = {default = false,description = "Enables ESLint as a formatter.",scope = "resource",type = "boolean"},["eslint.lintTask.enable"] = {default = false,description = "Controls whether a task for linting the whole workspace will be available.",scope = "resource",type = "boolean"},["eslint.lintTask.options"] = {default = ".",markdownDescription = "Command line options applied when ru