summaryrefslogtreecommitdiff
path: root/Build/source/libs/libpng/libpng-src/ci/.shellcheckrc
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/libpng/libpng-src/ci/.shellcheckrc')
-rw-r--r--Build/source/libs/libpng/libpng-src/ci/.shellcheckrc11
1 files changed, 11 insertions, 0 deletions
diff --git a/Build/source/libs/libpng/libpng-src/ci/.shellcheckrc b/Build/source/libs/libpng/libpng-src/ci/.shellcheckrc
new file mode 100644
index 00000000000..0260dcca30f
--- /dev/null
+++ b/Build/source/libs/libpng/libpng-src/ci/.shellcheckrc
@@ -0,0 +1,11 @@
+# Disable the "variable appears unused" warning caused by the use of getopts
+# with an obligatory (but unused) variable name in the main function.
+disable=SC2034
+
+# Disable all the "quote to prevent globbing or word splitting" advice.
+# We need word splitting for well-known variables like MAKEFLAGS and CFLAGS.
+disable=SC2086,SC2206
+
+# Disable the "possible misspelling" warnings that might be flagged, e.g.,
+# inside function ci_trace_build.
+disable=SC2153