mirror of
https://github.com/tw93/Mole.git
synced 2026-02-04 22:04:43 +00:00
16 lines
611 B
Plaintext
16 lines
611 B
Plaintext
# Mole project shellcheck configuration
|
|
|
|
disable=SC2155 # Declare and assign separately
|
|
disable=SC2034 # Unused variables
|
|
disable=SC2154 # Referenced but not assigned (global vars)
|
|
disable=SC2001 # Use parameter expansion instead of sed
|
|
disable=SC2059 # Don't use variables in printf format
|
|
disable=SC1091 # Not following sourced files
|
|
disable=SC1003 # Backslash escape warnings
|
|
disable=SC2295 # Expansions in ${..} quoting
|
|
disable=SC2162 # read without -r
|
|
disable=SC2329 # Function never invoked warnings
|
|
disable=SC2016 # Expressions in single quotes
|
|
disable=SC2317 # Unreachable command warnings
|
|
|