spacemacs/init-package/init-flycheck.el
sbenner 4c59c555d0 Remove flycheck integration with next-error
Prefere to call flycheck-next-error explicitly.
2013-11-15 12:03:25 -05:00

13 lines
321 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))
(setq flycheck-standard-error-navigation nil)