aboutsummaryrefslogtreecommitdiff
path: root/.shellcheckrc
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-02-23 11:54:25 -0600
committerCraig Jennings <c@cjennings.net>2026-02-23 11:54:25 -0600
commitfd2ea796b20bcbebea19c43978fb08e3cd6754ed (patch)
tree344efeff361b1c8953bd4f56d304a8ec70637899 /.shellcheckrc
parent8560e2a2798f9318fb28283d5ef7242fed20d447 (diff)
downloadarchangel-fd2ea796b20bcbebea19c43978fb08e3cd6754ed.tar.gz
archangel-fd2ea796b20bcbebea19c43978fb08e3cd6754ed.zip
refactor: rename custom/ to installer/ for clarity
The custom/ directory name was an archiso implementation detail. Renamed to installer/ which clearly communicates that this directory contains the installer scripts and utilities that ship on the ISO. Updated all references in build.sh, Makefile, test-install.sh, and README.
Diffstat (limited to '.shellcheckrc')
-rw-r--r--.shellcheckrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.shellcheckrc b/.shellcheckrc
index ae7c42f..c2d8dfd 100644
--- a/.shellcheckrc
+++ b/.shellcheckrc
@@ -16,5 +16,6 @@
# SC2059 - Variables in printf format (intentional for hex conversion)
# SC2143 - Use grep -q (stylistic)
# SC2207 - Prefer mapfile (arrays from command output)
+# SC1003 - False positive on escaped single quotes in case patterns
-disable=SC2034,SC2086,SC2162,SC2016,SC2317,SC2012,SC1091,SC2329,SC2011,SC2010,SC2129,SC2001,SC2059,SC2143,SC2207
+disable=SC2034,SC2086,SC2162,SC2016,SC2317,SC2012,SC1091,SC2329,SC2011,SC2010,SC2129,SC2001,SC2059,SC2143,SC2207,SC1003