aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-schemas/lsp/bash-language-server.lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2023-04-22 22:35:14 +0200
committerGitHub <noreply@github.com>2023-04-22 22:35:14 +0200
commit54c9176cb82fe1c227978c6df2e2b29f985cbd02 (patch)
treee329148d6211513feec0e02ef8610883f55a9e0f /lua/mason-schemas/lsp/bash-language-server.lua
parentfeat(registry): add .get_all_package_specs() (#1247) (diff)
downloadmason-54c9176cb82fe1c227978c6df2e2b29f985cbd02.tar
mason-54c9176cb82fe1c227978c6df2e2b29f985cbd02.tar.gz
mason-54c9176cb82fe1c227978c6df2e2b29f985cbd02.tar.bz2
mason-54c9176cb82fe1c227978c6df2e2b29f985cbd02.tar.lz
mason-54c9176cb82fe1c227978c6df2e2b29f985cbd02.tar.xz
mason-54c9176cb82fe1c227978c6df2e2b29f985cbd02.tar.zst
mason-54c9176cb82fe1c227978c6df2e2b29f985cbd02.zip
refactor(schemas): don't vendor schemas in mason.nvim (#1248)
Instead, schemas are now defined in the package registry and downloaded during installation. See https://github.com/mason-org/mason-registry/pull/1319.
Diffstat (limited to 'lua/mason-schemas/lsp/bash-language-server.lua')
-rw-r--r--lua/mason-schemas/lsp/bash-language-server.lua3
1 files changed, 0 insertions, 3 deletions
diff --git a/lua/mason-schemas/lsp/bash-language-server.lua b/lua/mason-schemas/lsp/bash-language-server.lua
deleted file mode 100644
index 7abefb23..00000000
--- a/lua/mason-schemas/lsp/bash-language-server.lua
+++ /dev/null
@@ -1,3 +0,0 @@
--- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY.
--- stylua: ignore start
-return {properties = {["bashIde.backgroundAnalysisMaxFiles"] = {default = 500,description = "Maximum number of files to analyze in the background. Set to 0 to disable background analysis.",minimum = 0,type = "number"},["bashIde.enableSourceErrorDiagnostics"] = {default = false,description = "Enable diagnostics for source errors. Ignored if includeAllWorkspaceSymbols is true.",type = "boolean"},["bashIde.explainshellEndpoint"] = {default = "",description = "Configure explainshell server endpoint in order to get hover documentation on flags and options.",type = "string"},["bashIde.globPattern"] = {default = "**/*@(.sh|.inc|.bash|.command)",description = "Glob pattern for finding and parsing shell script files in the workspace. Used by the background analysis features across files.",type = "string"},["bashIde.includeAllWorkspaceSymbols"] = {default = false,description = "Controls how symbols (e.g. variables and functions) are included and used for completion and documentation. If false (default and recommended), then we only include symbols from sourced files (i.e. using non dynamic statements like 'source file.sh' or '. file.sh' or following ShellCheck directives). If true, then all symbols from the workspace are included.",type = "boolean"},["bashIde.logLevel"] = {default = "info",description = "Controls the log level of the language server.",enum = { "debug", "info", "warning", "error" },type = "string"},["bashIde.shellcheckArguments"] = {default = "",description = "Additional ShellCheck arguments. Note that we already add the following arguments: --shell, --format, --external-sources.",type = "string"},["bashIde.shellcheckPath"] = {default = "shellcheck",description = "Controls the executable used for ShellCheck linting information. An empty string will disable linting.",type = "string"}},title = "Bash IDE configuration",type = "object"} \ No newline at end of file