2022-10-31 10:42:41 +01:00
|
|
|
shell=bash
|
|
|
|
|
2022-08-30 06:15:17 +02:00
|
|
|
# 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)
|
2022-09-05 01:51:37 +02:00
|
|
|
disable=SC2207 # Quote in arrays
|
2022-08-30 06:15:17 +02:00
|
|
|
|
|
|
|
# vim: set ts=4 sw=4 et tw=80 ft=bash:
|