From 86268e1faf904bc8844dea313fe1bdaf02398ae9 Mon Sep 17 00:00:00 2001 From: Dan Orzechowski Date: Tue, 27 Aug 2019 22:04:06 -0400 Subject: [PATCH] Update README.md --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a72f099..318833a 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,7 @@ Flymake backend for Javascript using eslint 0. Make sure `eslint` is installed and present on your emacs `exec-path`. For Linux systems `exec-path` usually equals your `$PATH` environment variable; for other systems, you're on your own. 1. Install: - from MELPA: `M-x package-install [RET] flymake-eslint [RET]` - - manually: download and place inside `~/.emacs.d/lisp`. - - then edit `~/.emacs` or equivalent: + - manually: download and place inside `~/.emacs.d/lisp` then edit `~/.emacs` or equivalent: ```lisp (add-to-list 'load-path "~/.emacs.d/lisp") (require "flymake-eslint.el") @@ -40,6 +38,13 @@ useful variables are members of the `flymake-eslint` group and can be viewed and "Set to t to append rule name to end of warning or error message, nil otherwise." :type 'boolean :group 'flymake-eslint) + +(defcustom flymake-eslint-defer-binary-check nil + "Set to t to bypass the initial check which ensures eslint is present. + +Useful when the value of variable `exec-path' is set dynamically and the location of eslint might not be known ahead of time." + :type 'boolean + :group 'flymake-eslint) ``` ## Bugs