Last active
July 1, 2016 14:11
-
-
Save asimpson/a0a5b084fa844abaaf16eaaf53753bd2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; turn on flychecking globally | |
(add-hook 'after-init-hook #'global-flycheck-mode) | |
(setq-default flycheck-disabled-checkers (list 'javascript-jshint 'emacs-lisp-checkdoc 'emacs-lisp 'json-jsonlist)) | |
;; use eslint with web-mode for jsx files | |
(flycheck-add-mode 'javascript-eslint 'web-mode) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment