ci: Update and rename ci_lint_ci.sh to ci_lint.sh; update .shellcheckrc

The ci_lint.sh program can now lint the entire libpng source tree.
This commit is contained in:
Cosmin Truta
2024-02-08 21:37:42 +02:00
parent 49eeb1f8ba
commit 46b79d4716
3 changed files with 139 additions and 90 deletions

View File

@@ -1,3 +1,7 @@
# Disable the "expressions don't expand in single quotes, use double quotes"
# advice. We need the regular expressions to remain uninterpolated.
disable=SC2016
# Disable the "variable appears unused" warning caused by the use of getopts
# with an obligatory (but unused) variable name in the main function.
disable=SC2034