mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
fix(vendor/flycheck-erblint): fix command name
This commit is contained in:
7
vendor/flycheck-erblint/flycheck-erblint.el
vendored
7
vendor/flycheck-erblint/flycheck-erblint.el
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user