.shellcheckrc 296 B

123456789101112
  1. # Suggest explicitly using -n in `[ $var ]`
  2. enable=avoid-nullary-conditions
  3. # Suggest 'command -v' instead of 'which'
  4. enable=deprecate-which
  5. # Suggest quoting variables without metacharacters
  6. enable=quote-safe-variables
  7. # Require [[ and warn about [ in Bash/Ksh
  8. enable=require-double-brackets