all repos — nixfiles @ b64fafdae9c71648ffd0ac01446f1bcc7aa2c2e6

System and user configuration, managed by nix and home-manager

Emacs: Don't flycheck on new-lines

This slows down the editor
Alan Pearce alan@alanpearce.eu
Mon, 22 May 2017 16:48:45 +0200
commit

b64fafdae9c71648ffd0ac01446f1bcc7aa2c2e6

parent

1ddfc50b1e25f757f6e40602d204b3a5ca7db91e

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M emacs/.emacs.d/init.orgemacs/.emacs.d/init.org
@@ -1718,7 +1718,7 @@ :diminish " ✓"   :defer 5
   :config (progn
             (global-flycheck-mode)
-            (setq flycheck-check-syntax-automatically '(save new-line mode-enabled))
+            (setq flycheck-check-syntax-automatically '(save mode-enabled))
             (if (executable-find "eslint_d")
                 (setq flycheck-javascript-eslint-executable "eslint_d"))))
 #+END_SRC