1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 18:34:46 +00:00
Files
Mole/.shellcheckrc
2025-10-13 10:20:46 +08:00

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