Files
kiauh/.shellcheckrc
th33xitus e7b6a19702 shellcheck: require-double-brackets
using double brackets `[[ ... ]]` is a better practice and generally more powerful

Signed-off-by: Dominik Willner th33xitus@gmail.com
2022-05-14 16:24:49 +02:00

16 lines
404 B
Plaintext

source=scripts
enable=avoid-nullary-conditions
enable=deprecate-which
enable=quote-safe-variables
enable=require-variable-braces
enable=require-double-brackets
# SC2162: `read` without `-r` will mangle backslashes.
# https://github.com/koalaman/shellcheck/wiki/SC2162
disable=SC2162
# SC2164: Use `cd ... || exit` in case `cd` fails
# https://github.com/koalaman/shellcheck/wiki/SC2164
disable=SC2164