From: Harald Hoyer Date: Wed, 24 Feb 2021 13:41:49 +0000 (+0100) Subject: chore: add .shellcheckrc X-Git-Tag: 054~310 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eddca442215e73b1ed0d0a12a38fe4ea2cb207ed;p=thirdparty%2Fdracut.git chore: add .shellcheckrc --- diff --git a/.shellcheckrc b/.shellcheckrc new file mode 100644 index 000000000..0b0b5db19 --- /dev/null +++ b/.shellcheckrc @@ -0,0 +1,5 @@ +# SC2039: In POSIX sh, 'local' is undefined. +disable=SC2039 + +# SC2166: Prefer [ p ] || [ q ] as [ p -o q ] is not well defined. +disable=SC2166