aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/init-flycheck.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/init-flycheck.el b/lisp/init-flycheck.el
index 9e38e1d..c046ab2 100644
--- a/lisp/init-flycheck.el
+++ b/lisp/init-flycheck.el
@@ -1,3 +1,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)