From 52ae5d0ebf84b91dbbdba163e3d790f02bf72410 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 8 Feb 2026 22:55:11 +0000 Subject: [PATCH] Disables shellcheck errors and removes variable Disables specific shellcheck errors to allow certain coding patterns and removes an unused variable from the super-linter workflow. This improves the linter's signal-to-noise ratio and reduces unnecessary checks. Relates to #4696 --- .github/linters/.shellcheckrc | 1 + .github/workflows/action-super-linter.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .github/linters/.shellcheckrc diff --git a/.github/linters/.shellcheckrc b/.github/linters/.shellcheckrc new file mode 100644 index 000000000..d16f69e0b --- /dev/null +++ b/.github/linters/.shellcheckrc @@ -0,0 +1 @@ +disable=SC2154,SC2034 diff --git a/.github/workflows/action-super-linter.yml b/.github/workflows/action-super-linter.yml index fd849f8ed..b7fbd6f55 100644 --- a/.github/workflows/action-super-linter.yml +++ b/.github/workflows/action-super-linter.yml @@ -49,5 +49,5 @@ jobs: VALIDATE_SHELL_SHFMT: false VALIDATE_TERRAFORM_TERRASCAN: false VALIDATE_YAML_PRETTIER: false - BASH_FILE_NAME: ".shellcheckrc" +