From 65e0e6960457ea39a89e7c8d22a503a1f80181de Mon Sep 17 00:00:00 2001 From: Dan Orzechowski Date: Fri, 3 May 2019 08:50:04 -0400 Subject: [PATCH] mention variables available for configuration --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 9db523e..7288e4d 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,23 @@ also in `~/.emacs` or wherever: useful variables are members of the `flymake-eslint` group and can be viewed and modified with the command `M-x customize-group [RET] flymake-eslint [RET]`. +```lisp +(defcustom flymake-eslint-executable-name "eslint" + "Name of executable to run when checker is called. Must be present in variable `exec-path'." + :type 'string + :group 'flymake-eslint) + +(defcustom flymake-eslint-executable-args nil + "Extra arguments to pass to eslint." + :type 'string + :group 'flymake-eslint) + +(defcustom flymake-eslint-show-rule-name t + "Set to t to append rule name to end of warning or error message, nil otherwise." + :type 'boolean + :group 'flymake-eslint) +``` + ## Bugs yes