13 lines
305 B
Plaintext
13 lines
305 B
Plaintext
# Default shell for sourced files without shebang (SC2148)
|
|
shell=bash
|
|
|
|
# Sourced files define variables used by other files after source
|
|
disable=SC2034
|
|
|
|
# Non-constant and external source paths are intentional
|
|
disable=SC1090
|
|
disable=SC1091
|
|
|
|
# Functions invoked indirectly via trap/callback
|
|
disable=SC2317
|