From 2c43eac1fdd24f08a2f5a4bed2ec2bb48b0ed94e Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 30 Aug 2022 06:15:17 +0200 Subject: [PATCH] disable some shellcheck warnings --- .shellcheckrc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .shellcheckrc diff --git a/.shellcheckrc b/.shellcheckrc new file mode 100644 index 000000000..69f538ec3 --- /dev/null +++ b/.shellcheckrc @@ -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: