12d365
From 9914a76e5748beae9662a0e44b1674249b778424 Mon Sep 17 00:00:00 2001
12d365
From: Pavel Valena <pvalena@redhat.com>
12d365
Date: Mon, 15 Aug 2022 10:44:35 +0200
12d365
Subject: [PATCH] ci: check out .shellcheckrc from upstream
12d365
12d365
To avoid ShellCheck false positives.
12d365
12d365
https://github.com/redhat-plumbers/dracut-rhel8/pull/18
12d365
12d365
rhel-only
12d365
---
12d365
 .shellcheckrc | 34 ++++++++++++++++++++++++++++++++++
12d365
 1 file changed, 34 insertions(+)
12d365
12d365
diff --git a/.shellcheckrc b/.shellcheckrc
12d365
new file mode 100644
12d365
index 00000000..ce5c883b
12d365
--- /dev/null
12d365
+++ b/.shellcheckrc
12d365
@@ -0,0 +1,34 @@
12d365
+# SC2039: In POSIX sh, 'local' is undefined.
12d365
+# https://github.com/koalaman/shellcheck/wiki/SC2039
12d365
+disable=SC2039
12d365
+
12d365
+# SC2166: Prefer [ p ] || [ q ] as [ p -o q ] is not well defined.
12d365
+# https://github.com/koalaman/shellcheck/wiki/SC2166
12d365
+disable=SC2166
12d365
+
12d365
+# SC2154: Variable is referenced but not assigned
12d365
+# https://github.com/koalaman/shellcheck/wiki/SC2154
12d365
+disable=SC2154
12d365
+
12d365
+# SC1091: Not following <file>
12d365
+# https://github.com/koalaman/shellcheck/wiki/SC1091
12d365
+disable=SC1091
12d365
+
12d365
+# SC2174: When used with -p, -m only applies to the deepest directory.
12d365
+# https://github.com/koalaman/shellcheck/wiki/SC2174
12d365
+disable=SC2174
12d365
+
12d365
+# SC3043: In POSIX sh, 'local' is undefined.
12d365
+# https://github.com/koalaman/shellcheck/wiki/SC3043
12d365
+# ... but dash supports it
12d365
+disable=SC3043
12d365
+
12d365
+# SC3013: In POSIX sh, -ef is undefined.
12d365
+# https://github.com/koalaman/shellcheck/wiki/SC3013
12d365
+# ... but dash supports it
12d365
+disable=SC3013
12d365
+
12d365
+# SC3045: In POSIX sh, read -p is undefined.
12d365
+# https://github.com/koalaman/shellcheck/wiki/SC3045
12d365
+# ... but dash supports it
12d365
+disable=SC3045