From a54793a9d0b9d10b9a2d29d554b93b3dc273f84e Mon Sep 17 00:00:00 2001 From: William Melody Date: Sun, 15 Mar 2020 11:31:27 -0700 Subject: [PATCH] Add .shellcheckrc and disable SC2207. --- .shellcheckrc | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .shellcheckrc diff --git a/.shellcheckrc b/.shellcheckrc new file mode 100644 index 0000000..ce47981 --- /dev/null +++ b/.shellcheckrc @@ -0,0 +1,12 @@ +############################################################################### +# .shellcheckrc +# +# https://github.com/koalaman/shellcheck +############################################################################### + +# Disable SC2207 +# +# IFS and `noglob` are set. +# +# https://github.com/koalaman/shellcheck/wiki/SC2207 +disable=SC2207