| name | bash-lint |
| description | This skill should be used when the user asks to "lint bash script", "run shellcheck", "format shell script", "use shfmt", "fix shellcheck errors", or mentions shell script linting, formatting, code quality, or pre-commit hooks for bash. |
Bash Linting
Shellcheck and shfmt integration for bash script quality assurance.
Shellcheck
Installation
apt install shellcheck
brew install shellcheck
cabal update && cabal install ShellCheck
Basic Usage
shellcheck script.sh
shellcheck *.sh
shellcheck --shell=bash script.sh
shellcheck --shell=sh script.sh
shellcheck --exclude=SC2086 script.sh
shellcheck --exclude=SC2086,SC2046 script.sh
shellcheck --format=gcc script.sh
shellcheck --format=json script.sh
shellcheck --format=diff script.sh
Common Shellcheck Codes
| Code | Issue | Fix |
|---|
| SC2086 | Double quote to prevent globbing/splitting | "$var" |
| SC2046 | Quote command substitution | "$(cmd)" |
| SC2006 | Use $() instead of backticks | $(cmd) |
| SC2034 | Variable appears unused | Remove or export |
| SC2155 | Declare and assign separately | Split local var; var=$(...) |
| SC2164 | Use cd ... || exit | Handle cd failure |
| SC2181 | Check exit status directly | if cmd; then |
| SC2129 | Consider grouping writes | Use { } > file |
| SC1090 | Can't follow sourced file | Use # shellcheck source=path |
| SC2154 | Variable referenced but not assigned | Initialize or declare |
Shellcheck Directives
echo $unquoted_var
source "$SCRIPT_DIR/lib/functions.sh"
Inline Directive Patterns
readonly CONFIG_VERSION="1.0"
result=$(echo $var)
source "${DYNAMIC_PATH}/config.sh"
shfmt
Installation
brew install shfmt
go install mvdan.cc/sh/v3/cmd/shfmt@latest
snap install shfmt
Basic Usage
shfmt script.sh
shfmt -w script.sh
shfmt -d script.sh
shfmt -w .
shfmt -w scripts/
Formatting Options
shfmt -i 2 script.sh
shfmt -i 4 script.sh
shfmt -i 0 script.sh
shfmt -bn script.sh
shfmt -ci script.sh
shfmt -sr script.sh
shfmt -kp script.sh
shfmt -fn script.sh
shfmt -i 4 -ci -bn script.sh
Configuration (.editorconfig)
[*.sh]
indent_style = space
indent_size = 4
shell_variant = bash
binary_next_line = true
switch_case_indent = true
space_redirects = true
Example Transformations
Before shfmt:
if [ -f "$file" ];then
echo "exists"
fi
for i in 1 2 3;do
process $i
done
After shfmt -i 4 -ci:
if [ -f "$file" ]; then
echo "exists"
fi
for i in 1 2 3; do
process $i
done
Pre-commit Integration
.pre-commit-config.yaml
repos:
- repo: https://github.com/koalaman/shellcheck-precommit
rev: v0.9.0
hooks:
- id: shellcheck
args: ["--severity=warning"]
- repo: https://github.com/scop/pre-commit-shfmt
rev: v3.7.0-1
hooks:
- id: shfmt
args: ["-i", "4", "-ci", "-w"]
- repo: local
hooks:
- id: shellcheck
name: shellcheck
entry: shellcheck
language: system
types: [shell]
args: ["--severity=warning", "-x"]
- id: shfmt
name: shfmt
entry: shfmt
language: system
types: []
[, , , ]
Running Pre-commit
pre-commit install
pre-commit run --all-files
pre-commit run shellcheck --all-files
pre-commit run shfmt --all-files
pre-commit run --files script.sh
Integration with CI/CD
GitHub Actions
name: Shell Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
severity: warning
- name: Check formatting with shfmt
uses: mvdan/github-action-shfmt@master
with:
flags: -d -i 4 -ci
GitLab CI
shellcheck:
image: koalaman/shellcheck-alpine:stable
script:
- find . -name "*.sh" -exec shellcheck {} +
shfmt:
image: mvdan/shfmt:latest
script:
- shfmt -d -i 4 -ci .
Fixing Common Issues
SC2086: Quote to prevent splitting
echo $var
echo "$var"
printf '%s\n' "$var"
SC2155: Declare and assign separately
local var=$(some_command)
local var
var=$(some_command)
SC2164: Use cd || exit
cd "$dir"
rm -rf *
cd "$dir" || exit 1
rm -rf *
(cd "$dir" && rm -rf *)
SC2181: Check exit directly
command
if [ $? -eq 0 ]; then
if command; then
SC1090/SC1091: Source issues
source "$DYNAMIC_PATH/lib.sh"
source "$SCRIPT_DIR/lib/functions.sh"
Editor Integration
VS Code
Install "ShellCheck" extension by Timon Wong.
{
"shellcheck.enable": true,
"shellcheck.run": "onSave",
"shellcheck.executablePath": "shellcheck",
"editor.formatOnSave": true,
"[shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
}
}
Vim/Neovim
" With ALE
let g:ale_linters = {'sh': ['shellcheck']}
let g:ale_fixers = {'sh': ['shfmt']}
let g:ale_sh_shfmt_options = '-i 4 -ci'
" With coc.nvim
" Install coc-sh extension
Best Practices
- Run shellcheck early - integrate into editor and CI
- Fix issues, don't suppress - only disable with good reason
- Document suppressions - explain why rule is disabled
- Use severity levels -
--severity=warning for CI
- Consistent formatting - use shfmt in pre-commit
- Version lock tools - pin versions in CI/pre-commit