disable some shellcheck warnings
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2022-08-30 06:15:17 +02:00
parent 2362436b5d
commit 2c43eac1fd
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 10 additions and 0 deletions

10
.shellcheckrc Normal file
View File

@ -0,0 +1,10 @@
# 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)
# vim: set ts=4 sw=4 et tw=80 ft=bash: