init.el에 대해 flycheck-mode를 활성화하면 다음과 같은 오류가 발생합니다.
The first line should be of the form: ";;; package --- Summary" (emacs-lisp-checkdoc)
...
The footer should be: (provide 'init)\n;;; init.el ends here (emacs-lisp-checkdoc)
플라이 체크가 init.el을 패키지로 취급하지 않도록하려면 어떻게해야합니까?
편집하다
최소 시작 파일을 따르려고했습니다.
;; flycheck-mode
(require 'flycheck)
(global-flycheck-mode)
(setq-default flycheck-disabled-checker '(emacs-lisp-checkdoc))
플라이 체크 및 해당 종속 항목 만 활성화됩니다. emacs-lisp-checkdoc
비활성화 된 검사기 목록에 있지만 flycheck는 여전히 오류를 나열합니다.
0 warning The first line should be of the form: ";;; package --- Summary" (emacs-lisp-checkdoc) 0 warning You should have a section marked ";;; Commentary:" (emacs-lisp-checkdoc) 2 1 error Cannot open load file: no such file or directory, flycheck (emacs-lisp) 3 warning You should have a section marked ";;; Code:" (emacs-lisp-checkdoc) 5 warning The footer should be: (provide 'test)\n;;; test.el ends here (emacs-lisp-checkdoc)
Emacs 24.5.1과 git 저장소 (26snapshot)의 최신 flycheck을 사용하고 있습니다.