emacs-personal/lisp/init-flycheck.el
2018-08-04 14:06:36 -05:00

8 lines
195 B
EmacsLisp

(require-package 'flycheck)
(add-hook 'after-init-hook 'global-flycheck-mode)
;; Disable on emacs-lisp
(setq-default flycheck-disabled-checkers '(emacs-lisp-checkdoc))
(provide 'init-flycheck)