# Disable some errors.
# SC2086 - Double quote to prevent globbing and word splitting.
# SC2059 - Don't use variables in the printf format string. Use printf "..%s.." "$foo".
# SC2162 - Read without -r will mangle backslashes.
# SC2035 - Use ./*glob* or -- *glob* so names with dashes won't become options.
disable=SC2086,SC2059,SC2162,SC2035
