Disable doc check on lisp

This commit is contained in:
Jesús 2018-08-04 14:06:36 -05:00
parent a6556cc758
commit 147f72b75b
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

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