.shellcheckrc 373 B

123456789101112
  1. # See: https://github.com/koalaman/shellcheck/blob/master/shellcheck.1.md#rc-files
  2. source-path=SCRIPTDIR
  3. # Allow opening any 'source'd file, even if not specified as input
  4. external-sources=true
  5. # Turn on warnings for unquoted variables with safe values
  6. enable=quote-safe-variables
  7. # Turn on warnings for unassigned uppercase variables
  8. enable=check-unassigned-uppercase