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)
flycheckがinit.elをパッケージとして扱うのを止めるにはどうすればよいですか?
編集
私は最小限の起動ファイルを次のようにしようとしました:
;; flycheck-mode
(require 'flycheck)
(global-flycheck-mode)
(setq-default flycheck-disabled-checker '(emacs-lisp-checkdoc))
flycheckとその依存関係のみが有効になります。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リポジトリーの最新のflycheck(26snapshot)を使用しています。