spacemacs/init-package/init-flycheck.el

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))