Skip to content

Commit

Permalink
[auto] Update Settings
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 6, 2023
1 parent 2adb998 commit ad3e959
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,48 @@
},
"sh.commandPath": {
"type": "string"
},
"bashIde.backgroundAnalysisMaxFiles": {
"type": "number",
"default": 500,
"description": "Maximum number of files to analyze in the background. Set to 0 to disable background analysis.",
"minimum": 0
},
"bashIde.explainshellEndpoint": {
"type": "string",
"default": "",
"description": "Configure explainshell server endpoint in order to get hover documentation on flags and options."
},
"bashIde.globPattern": {
"type": "string",
"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."
},
"bashIde.includeAllWorkspaceSymbols": {
"type": "boolean",
"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'). If true, then all symbols from the workspace are included."
},
"bashIde.logLevel": {
"type": "string",
"default": "info",
"enum": [
"debug",
"info",
"warning",
"error"
],
"description": "Controls the log level of the language server."
},
"bashIde.shellcheckPath": {
"type": "string",
"default": "shellcheck",
"description": "Controls the executable used for ShellCheck linting information. An empty string will disable linting."
},
"bashIde.shellcheckArguments": {
"type": "string",
"default": "",
"description": "Additional ShellCheck arguments. Note that we already add the following arguments: --shell, --format, --external-sources."
}
}
},
Expand Down

0 comments on commit ad3e959

Please sign in to comment.