From 52ed1ddc82d65c22d5048e7b77e11d32a8a2ec5b Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 5 Nov 2024 00:30:20 +0000 Subject: [PATCH] fix(vendor/flycheck-erblint): fix command name --- vendor/flycheck-erblint/flycheck-erblint.el | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/vendor/flycheck-erblint/flycheck-erblint.el b/vendor/flycheck-erblint/flycheck-erblint.el index c69cdca..21e2660 100644 --- a/vendor/flycheck-erblint/flycheck-erblint.el +++ b/vendor/flycheck-erblint/flycheck-erblint.el @@ -42,11 +42,6 @@ "Check files with erblint via flycheck." :group 'tools) -(defcustom flycheck-erblint-command "erb_lint" - "Name of erblint executable." - :type 'string - :group 'flycheck-erblint) - (defcustom flycheck-erblint-extra-args nil "Extra arguments to pass to erblint." :type '(repeat string) @@ -117,7 +112,7 @@ about erb-lint." See URL `https://github.com/Shopify/erb-lint' for more information about erb-lint." - :command (flycheck-erblint-command "--format" "json" + :command ("erb_lint" "--format" "json" (config-file "--config" flycheck-erblint-config-filename) "--stdin" source-original) :standard-input t