This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
spacemacs/init-package/init-flycheck.el

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