Skip to content

Instantly share code, notes, and snippets.

@asimpson
Last active July 1, 2016 14:11
Show Gist options
  • Save asimpson/a0a5b084fa844abaaf16eaaf53753bd2 to your computer and use it in GitHub Desktop.
Save asimpson/a0a5b084fa844abaaf16eaaf53753bd2 to your computer and use it in GitHub Desktop.
;; 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