From 8a7a9ade501dde18976af9c61f91670ff1ed0f76 Mon Sep 17 00:00:00 2001 From: Ramiro Algozino Date: Fri, 13 Dec 2024 11:06:43 +0100 Subject: [PATCH] chore(ci): ignore SC2317 Ignore the shellcheck warning of command not available. We don't have all the binaries that we are calling in the linter container image. --- .drone.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.drone.yml b/.drone.yml index e6a7c98f..3b66cbe7 100644 --- a/.drone.yml +++ b/.drone.yml @@ -39,6 +39,8 @@ steps: # Some duplicated code is intended. VALIDATE_JSCPD: "false" TYPESCRIPT_DEFAULT_STYLE: "prettier" + # We ignore the command not found error, because in the linter image we don't have all the binaries being called. + SHELLCHECK_OPTS: "-e SC2317" depends_on: - clone