VS Code Extensions
ShellCheck
ShellCheck provides linting for common mistakes in your shell script. To use ShellCheck in Gitpod, first, we must install theshellcheck tool. Here is a simple Dockerfile to get you started:
vscode extensions section):
Bash IDE
Just to name a few things Bash IDE adds: Code completion, hovers, and diagnostic reporting.
To install Bash IDE to your repository add the following to your .gitpod.Dockerfile
Further Reading
- For more information about ShellCheck please see shellcheck.net
Known issues
The shellcheck program was not found
It has been reported that shellcheck extension fails to detect shellcheck from homebrew which results in:
To resolve this you need to set "shellcheck.executablePath": "/home/linuxbrew/.linuxbrew/bin/shellcheck", (or to path that point to shellcheck on your system), See https://github.com/vivek-verma202/GWAS_FM/pull/3/files