diff .shellcheckrc @ 756:33df05108ba1

farray.sh: New implementation alists: searching is done using a binary search now while preserving insertion order. The implementation uses two key lists: The first one is sorted and is used for searching using binary search. The second is a double-linked list and is used for remembering the insertion order.
author Franz Glasner <fzglas.hg@dom66.de>
date Sat, 19 Oct 2024 22:40:11 +0200
parents e8eb5e7ceb37
children e18cc5fe828c
line wrap: on
line diff
--- a/.shellcheckrc	Fri Oct 18 14:02:18 2024 +0200
+++ b/.shellcheckrc	Sat Oct 19 22:40:11 2024 +0200
@@ -25,5 +25,7 @@
 disable=SC3012
 # In POSIX sh, local is undefined
 disable=SC3043
+# ;& is non-standard
+disable=SC2127
 
 enable=avoid-nullary-conditions