{"id":15755699,"url":"https://github.com/woozymasta/shell-script-ide","last_synced_at":"2026-05-14T22:47:26.211Z","repository":{"id":148157544,"uuid":"420279342","full_name":"WoozyMasta/shell-script-ide","owner":"WoozyMasta","description":"Set of extensions to convert VSCode to IDE for shell scripting (sh, bash)","archived":false,"fork":false,"pushed_at":"2021-10-24T10:43:32.000Z","size":30,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-18T10:52:37.518Z","etag":null,"topics":["bash","bash-script","bash-scripting","shell","shell-script","shell-scripts","vscode","vscode-extensionpack"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=woozy-masta.shell-script-ide","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WoozyMasta.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-10-23T00:47:44.000Z","updated_at":"2021-10-24T10:43:16.000Z","dependencies_parsed_at":"2023-05-19T08:15:10.388Z","dependency_job_id":null,"html_url":"https://github.com/WoozyMasta/shell-script-ide","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/WoozyMasta/shell-script-ide","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WoozyMasta%2Fshell-script-ide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WoozyMasta%2Fshell-script-ide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WoozyMasta%2Fshell-script-ide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WoozyMasta%2Fshell-script-ide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WoozyMasta","download_url":"https://codeload.github.com/WoozyMasta/shell-script-ide/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WoozyMasta%2Fshell-script-ide/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280789112,"owners_count":26391439,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-24T02:00:06.418Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","bash-script","bash-scripting","shell","shell-script","shell-scripts","vscode","vscode-extensionpack"],"created_at":"2024-10-04T08:40:22.082Z","updated_at":"2025-10-24T11:37:02.964Z","avatar_url":"https://github.com/WoozyMasta.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Shell script IDE\n\nSet of extensions to convert VSCode to IDE for shell scripting (sh, bash)\n\n## Install binary dependencies\n\nFor the extensions to work correctly, you need to install binary dependencies\ninto your operating system.\n\n---\n\nInstall **hadolint**:\n\n* Download the [latest binary release][hadolint-releases] and install it on\n  your system, or use the official [installation guide][hadolint-install].\n\n---\n\nInstall **bashdb**:\n\nDownload [bashdb source][bashdb] files and install it:\n\n```bash\nBASDB_VERSION=5.0-1.1.2\ncurl -Lo \"bashdb-$BASDB_VERSION.tar.gz\" \\\n  \"https://sourceforge.net/projects/bashdb/files/bashdb/$BASDB_VERSION/bashdb-$BASDB_VERSION.tar.gz/download\"\ntar xf \"bashdb-$BASDB_VERSION.tar.gz\"\ncd \"bashdb-$BASDB_VERSION/\"\n./configure\nmake\nsudo make install\n```\n\n---\n\nOptionally you can also install binaries for [**shellcheck**][shellcheck] and\n[**shfmt**][shfmt]. But in most cases this is not necessary, they are installed\nautomatically when the extension is installed.\n\n* [github.com/koalaman/shellcheck][shellcheck]\n* [github.com/mvdan/sh][shfmt]\n\n## Recommended VSCode setting\n\n```json\n{\n  \"files.autoSave\": \"off\",\n  \"[shellscript]\": {\n    \"files.eol\": \"\\n\",\n    \"files.insertFinalNewline\": true,\n    \"files.trimFinalNewlines\": true,\n    \"files.trimTrailingWhitespace\": true,\n    \"editor.renderWhitespace\": \"boundary\",\n    \"editor.insertSpaces\": true,\n    \"editor.tabSize\": 2,\n    \"editor.tabCompletion\": \"on\",\n    \"editor.snippetSuggestions\": \"top\",\n    \"editor.wordWrap\": \"off\",\n    \"editor.formatOnPaste\": true,\n    \"editor.rulers\": [\n      {\n        \"column\": 72,\n        \"color\": \"#1e751633\",\n      },\n      {\n        \"column\": 80,\n        \"color\": \"#c2790b99\",\n      },\n      {\n        \"column\": 132,\n        \"color\": \"#a10d2d99\"\n      }\n    ],\n    \"editor.minimap.maxColumn\": 132,\n  },\n  // Other settings \n}\n```\n\n## Links\n\n* [Подготовка эффективной среды для написания bash сценариев][habr] - an article\n  in Russian about preparing an effective environment for developing\n  bash scripts\n\n\u003c!-- links --\u003e\n\n[hadolint-releases]: https://github.com/hadolint/hadolint/releases\n[hadolint-install]: https://github.com/hadolint/hadolint#install\n[bashdb]: https://sourceforge.net/projects/bashdb/files/bashdb/\n[shellcheck]: \u003chttps://github.com/koalaman/shellcheck/releases\u003e\n[shfmt]: \u003chttps://github.com/mvdan/sh/releases\u003e\n[habr]: https://habr.com/ru/post/583320/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwoozymasta%2Fshell-script-ide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwoozymasta%2Fshell-script-ide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwoozymasta%2Fshell-script-ide/lists"}