blob: c046ab26c58b8c9179032b81f00d3b01122a53d8 (
plain)
1
2
3
4
5
6
7
|
(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)
|