1# Disable the "expressions don't expand in single quotes, use double quotes" 2# advice. We need the regular expressions to remain uninterpolated. 3disable=SC2016 4 5# Disable the "variable appears unused" warning caused by the use of getopts 6# with an obligatory (but unused) variable name in the main function. 7disable=SC2034 8 9# Disable all the "quote to prevent globbing or word splitting" advice. 10# We need word splitting for well-known variables like MAKEFLAGS and CFLAGS. 11disable=SC2086,SC2206 12