diff .shellcheckrc @ 749:e8eb5e7ceb37

farray.sh: Implement binary lexicographical search in "farray_binsearch()". While there disable SC3012 in shellcheck because FreeBSD's /bin/sh supports lexicographical comparisons in "test".
author Franz Glasner <fzglas.hg@dom66.de>
date Thu, 10 Oct 2024 13:27:50 +0200
parents d016ac770a71
children 33df05108ba1
line wrap: on
line diff
--- a/.shellcheckrc	Wed Oct 09 22:56:11 2024 +0200
+++ b/.shellcheckrc	Thu Oct 10 13:27:50 2024 +0200
@@ -21,6 +21,8 @@
 disable=SC2166
 # In POSIX sh, $'..' is undefined
 disable=SC3003
+# In POSIX sh, lexicographical \< is undefined.
+disable=SC3012
 # In POSIX sh, local is undefined
 disable=SC3043