koalaman / shellcheck Public
Directive
ShellCheck Directives
Shellcheck directives allow you to control how shellcheck works, and take the form of comments in files:
hexToAscii() {
# shellcheck disable=SC2059
printf "\x$1"
}or entries in a .shellcheckrc in the project root or user's home directory:
$ cat ~/.shellcheckrc
# Don't suggest [ -n "$VAR" ] over [ ! -z "$VAR" ]
disable=SC2236
# Suggest ${VAR} in place of $VAR
enable=require-variable-braces
Supported directives
disable
Prevent shellcheck from processing one or more warnings:
# shellcheck disable=code[,code...]
statement_where_warning_should_be_disabledA range of errors can also be specified, handy when disbaling things for the entire file.
#!/bin/bash
# shellcheck disable=SC1000-SC9999enable
Enables an optional check (since 0.7.0).
#!/bin/bash
# shellcheck enable=require-variable-braces
echo "Hello $USER" # Will suggest ${USER}To see a list of optional checks with examples, run shellcheck --list-optional. See here for more information.
source
Tell ShellCheck where to find a sourced file (since 0.4.0):
# shellcheck source=src/examples/config.sh
. "$(locate_config)"source-path
Give ShellCheck a path on where to search sourced file (since 0.x.x):
# shellcheck source-path=src/examples
. "$(locate_config)"(similar to the example above)
Additionally, with source-path=SCRIPTPATH you can do things like:
#!/bin/sh
# file: scripts/test.sh
# shellcheck source-path=SCRIPTPATH
. "$(dirname "$(realpath "$0")")/utils.sh"for file layout:
.
└── scripts
├── test.sh
└── utils.sh
shell
Specify the shell for a script (similar to the shebang, if you for any reason don't want to add one) (since 0.4.5):
# shellcheck shell=sh
echo foo &> barDirectives that replace or are immediately after the shebang apply to the entire script. Otherwise, they are scoped to the command that follows it (including compound commands like function definitions, loops and case statements). A directive may only be applied to a complete command, and can not be used immediately preceding an else block or individual case branch:
# Directive VALID here, applies to whole `case`
case $1 in
# Directive INVALID, `-v)` is not a complete command
-v)
# Directive VALID here, applies to whole `if`
if [ "$v" ]
then
# Directive VALID here, applies to `die ..` command
die "Only one -v allowed"
# Directive INVALID here, `else` is not a complete command
else
v=1
fi ;;
esacThere is no support for scoping a directive to the first structure of the script. In these cases, use a dummy command true or : and then add directives, such as
# This directive applies to the entire script
# shellcheck disable=2086
true
# This directive only applies to this function
# shellcheck disable=2043
f() {
...
}Silencing parser errors is purely cosmetic; any parser error found will still stop ShellCheck at the point of the error.
Documenting directive use
To document why a specific directive was used, it is recommended to add a comment.
The comment can be added on the preceding line. This is the recommended option for long comments.
# this is intentional because of reasons
# that are long and need explaining
# shellcheck disable=SC1234
statement_where_warning_should_be_disabledThe comment can also be added at the end of the directive line. This is the recommended option for short comments.
# shellcheck disable=SC1234 # this is intentional
statement_where_warning_should_be_disabled