summaryrefslogtreecommitdiff
path: root/.shellcheckrc
blob: 75aca74a93581497ae4d7fbebca47f18d48b933f (plain)
1
2
3
4
5
6
7
8
9
10
11
# Suggest explicitly using -n in `[ $var ]`
enable=avoid-nullary-conditions

# Suggest 'command -v' instead of 'which'
enable=deprecate-which

# Suggest quoting variables without metacharacters
enable=quote-safe-variables

# Require [[ and warn about [ in Bash/Ksh
enable=require-double-brackets