Якщо режим flycheck увімкнено для мого init.el, у мене виникли такі помилки:
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 як пакета?
EDIT
Я намагався дотримуватися мінімального запуску файлу:
;; flycheck-mode
(require 'flycheck)
(global-flycheck-mode)
(setq-default flycheck-disabled-checker '(emacs-lisp-checkdoc))
Увімкнено лише перевірку та її залежності. emacs-lisp-checkdoc
знаходиться в списку вимкнених перевірок, але флеш-лист все ще містить помилки:
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 (26 знімок).