tastytea
1d130f8672
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: tastytea <tastytea@tastytea.de>
14 lines
431 B
Plaintext
14 lines
431 B
Plaintext
shell=bash
|
|
|
|
# This disables some warnings for stuff that is normal in ebuilds. Less false
|
|
# positives, but also less right positives.
|
|
|
|
disable=SC2148 # missing shebang
|
|
disable=SC2034 # unused variable
|
|
disable=SC2115 # empty variable in path
|
|
disable=SC2086,SC2206 # quote variables
|
|
disable=SC2046 # quote $(foo)
|
|
disable=SC2207 # Quote in arrays
|
|
|
|
# vim: set ts=4 sw=4 et tw=80 ft=bash:
|