You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bpkg/.shellcheckrc

21 lines
596 B
Plaintext

## Allow: To read lines rather than words, pipe/redirect to a 'while read' loop
disable=SC2013
## Allow: Unsued variables
disable=SC2034
## Allow: Double quote array expansions to avoid re-splitting elements
disable=SC2068
## Allow: Declare and assign separately to avoid masking return values
disable=SC2155
## Allow: Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a.
disable=SC2206
## Allow: Prefer mapfile or read -a to split command output (or quote to avoid splitting)
disable=SC2207
## Allow: Instead of 'let expr', prefer (( expr ))
disable=SC2219