Se la modalità flycheck è abilitata per il mio init.el, ho i seguenti tipi di errori:
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)
Come posso impedire a flycheck di trattare il mio init.el come un pacchetto?
MODIFICARE
Ho provato a seguire il file di avvio minimo:
;; flycheck-mode
(require 'flycheck)
(global-flycheck-mode)
(setq-default flycheck-disabled-checker '(emacs-lisp-checkdoc))
Sono abilitati solo il flycheck e le sue dipendenze. emacs-lisp-checkdoc
è nell'elenco di controllo disabilitato ma il flycheck elenca ancora gli errori:
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)
Sto usando Emacs 24.5.1 e l'ultimo flycheck nel repository git (26snapshot).