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

17 lines
431 B
Plaintext

# shellcheck disable=SC2034
## Allow: To read lines rather than words, pipe/redirect to a 'while read' loop
disable=SC2013
## Allow: Declare and assign separately to avoid masking return values
disable=SC2155
## 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
## Allow: Not following source
disable=SC1091