From ec28e88893cdd6241be0dbcc0e3cdc0f86bc6c7f Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Sat, 30 Dec 2023 03:19:58 +0100 Subject: [PATCH] add .shellcheckrc --- .shellcheckrc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .shellcheckrc diff --git a/.shellcheckrc b/.shellcheckrc new file mode 100644 index 0000000..9321071 --- /dev/null +++ b/.shellcheckrc @@ -0,0 +1,15 @@ +# ~/.shellcheckrc + +# follow source _common.sh +external-sources=true + +# disable common errors with yunohost scripting: + +# Not following: (error message here) +disable=SC1091 + +# foo appears unused. Verify it or export it. +disable=SC2034 + +# var is referenced but not assigned. +disable=SC2154