2025-10-12 15:43:45 +08:00
|
|
|
# Mole project shellcheck configuration
|
|
|
|
|
|
2025-10-13 10:20:46 +08:00
|
|
|
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
|
2025-10-12 21:43:37 +08:00
|
|
|
|