diff options
author | Jesús <heckyel@hyperbola.info> | 2018-08-04 14:06:36 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2018-08-04 14:06:36 -0500 |
commit | 147f72b75b8318bf7eb8b7f911c429ea68af2a51 (patch) | |
tree | 79b46e46efa281770172329f306d13587c0b93ac /lisp | |
parent | a6556cc7581d60b6dfad4277fe0a45cf469fbb45 (diff) | |
download | emacs-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.el | 4 |
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) |