Skip to content

Commit

Permalink
fix eslint command-line args
Browse files Browse the repository at this point in the history
  • Loading branch information
orzechowskid committed May 13, 2019
1 parent ffae946 commit 9b4b4ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flymake-eslint.el
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Create linter process for SOURCE-BUFFER which invokes CALLBACK once linter is fi
:connection-type 'pipe
:noquery t
:buffer (generate-new-buffer " *flymake-eslint*")
:command (list flymake-eslint-executable-name "--no-color" "--no-ignore" "--stdin" "--stdin-filename" (buffer-name source-buffer) (or flymake-eslint-executable-args ""))
:command (list flymake-eslint-executable-name "--no-color" "--no-ignore" "--stdin-filename" (buffer-name source-buffer) (or flymake-eslint-executable-args ""))
:sentinel (lambda (proc &rest ignored)
;; do stuff upon child process termination
(when (and (eq 'exit (process-status proc))
Expand Down

0 comments on commit 9b4b4ab

Please sign in to comment.