spacemacs/init-package/init-flycheck.el
2013-09-17 01:06:38 -04:00

12 lines
275 B
EmacsLisp

(require 'flycheck)
(dolist (mode '(c
elixir
json
python
ruby))
(add-hook (intern (concat (symbol-name mode) "-mode-hook"))
'flycheck-mode))
(setq flycheck-check-syntax-automatically '(save mode-enabled))