Skip to content
Snippets Groups Projects
Select Git revision
  • effe3162f8269cf4ec67f7b37c183ca6bc086484
  • master default protected
  • v2022.1
3 results

exit_strategy.pl

Blame
  • .shellcheckrc 339 B
    ### ENABLE SOME OPTIONAL CHECKS
    # use "shellcheck --list-optional" to list available checks
    enable=add-default-case
    enable=avoid-nullary-conditions
    enable=require-variable-braces
    
    
    
    ### DISABLE CHECKS
    
    # https://github.com/koalaman/shellcheck/wiki/SC1091
    disable=SC1091
    
    # https://github.com/koalaman/shellcheck/issues/2457
    disable=SC2020