From 2405750e6b15ce21ac80fa4594ad31ed3c66ce2a Mon Sep 17 00:00:00 2001 From: Juan David Hurtado G Date: Sun, 20 Apr 2025 11:40:58 -0500 Subject: [PATCH] shellcheck: keeping comments at 80 columns --- .github/workflows/shellcheck.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml index 4851b20f..b706ca28 100644 --- a/.github/workflows/shellcheck.yml +++ b/.github/workflows/shellcheck.yml @@ -17,13 +17,18 @@ jobs: - name: Run ShellCheck uses: ludeeus/action-shellcheck@2.0.0 env: - # Excluding SC3043: In POSIX sh, 'local' is undefined. Ignoring because local is a built-in command in FreeBSD - # Excluding SC2154: Variable is referenced but not assigned. Because we include files in the scripts - # Excluding SC3037: In POSIX sh, echo flags are undefined. Ignoring temporarily until we decide to keep it or - # use printf instead - # Excluding SC2155: Declare and assign separately to avoid masking return values. - # Excluding SC2124: Assigning an array to a string! Check instead if this is a false positive or if there is - # a better way to do it. + # Excluding SC3043: In POSIX sh, 'local' is undefined. Ignoring + # because local is a built-in command in FreeBSD + # Excluding SC2154: Variable is referenced but not assigned. Because + # we include files in the scripts + # Excluding SC3037: In POSIX sh, echo flags are undefined. Ignoring + # temporarily until we decide to keep it or use + # printf instead + # Excluding SC2155: Declare and assign separately to avoid masking + # return values. + # Excluding SC2124: Assigning an array to a string! Check instead if + # this is a false positive or if there is a better + # way to do it. SHELLCHECK_OPTS: -e SC3043 -e SC2154 -e SC3037 -e SC2155 -e SC2124 with: severity: warning