aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2018-08-04 14:06:36 -0500
committerJesús <heckyel@hyperbola.info>2018-08-04 14:06:36 -0500
commit147f72b75b8318bf7eb8b7f911c429ea68af2a51 (patch)
tree79b46e46efa281770172329f306d13587c0b93ac /lisp
parenta6556cc7581d60b6dfad4277fe0a45cf469fbb45 (diff)
downloademacs-personal-147f72b75b8318bf7eb8b7f911c429ea68af2a51.tar.lz
emacs-personal-147f72b75b8318bf7eb8b7f911c429ea68af2a51.tar.xz
emacs-personal-147f72b75b8318bf7eb8b7f911c429ea68af2a51.zip
Disable doc check on lisp
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)