spacemacs/init-extension/init-flycheck.el
2013-04-25 11:58:40 -04:00

12 lines
290 B
EmacsLisp

(require 'flycheck)
(dolist (mode '(elixir
json
python
ruby))
(add-hook (intern (concat (symbol-name mode) "-mode-hook"))
'flycheck-mode))
(setq flycheck-check-syntax-automatically (delq 'new-line flycheck-check-syntax-automatically))