From 1960126c9ed75fe6c37ac850c44221ee206c31f2 Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Sat, 11 May 2024 10:25:53 +0800 Subject: [PATCH] Fix precious config for shellcheck --- precious.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/precious.toml b/precious.toml index 5ed8137..7702b88 100644 --- a/precious.toml +++ b/precious.toml @@ -44,9 +44,6 @@ ignore_stderr = [ "Code style issues" ] [commands.shellcheck] type = "lint" include = "**/*.sh" -cmd = [ "shellcheck" ] -lint_flags = "--check" -tidy_flags = "--write" +cmd = "shellcheck" ok_exit_codes = 0 lint_failure_exit_codes = 1 -ignore_stderr = [ "Code style issues" ]