mirror of
https://github.com/doomemacs/doomemacs.git
synced 2025-12-06 18:40:52 -08:00
fix(emacs-lisp): duplicate entries in flycheck-disabled-checkers
This commit is contained in:
parent
4418c80c95
commit
637f70f53b
1 changed files with 4 additions and 2 deletions
|
|
@ -396,8 +396,10 @@ as `+emacs-lisp-non-package-mode' will enable it and disable the other checkers.
|
|||
(car command-line-args-left))
|
||||
0 0 (error-message-string e)))))
|
||||
,(read (default-toplevel-value 'flycheck-emacs-lisp-check-form))))
|
||||
flycheck-disabled-checkers (cons 'emacs-lisp-checkdoc
|
||||
flycheck-disabled-checkers))))
|
||||
flycheck-disabled-checkers
|
||||
(cons 'emacs-lisp-checkdoc
|
||||
(remq 'emacs-lisp-checkdoc
|
||||
flycheck-disabled-checkers)))))
|
||||
|
||||
;;;###autoload
|
||||
(define-minor-mode +emacs-lisp-non-package-mode
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue