Flycheck modu benim init.el için etkinleştirilirse, aşağıdaki hata türlerini aldım:
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'in init.el dosyasına bir paket olarak davranmasını nasıl durdurabilirim?
DÜZENLE
En az başlangıç dosyasını takip etmeye çalıştım:
;; flycheck-mode
(require 'flycheck)
(global-flycheck-mode)
(setq-default flycheck-disabled-checker '(emacs-lisp-checkdoc))
Yalnızca flycheck ve bağımlılıkları etkindir. emacs-lisp-checkdoc
devre dışı bırakılmış denetleyici listesinde ancak flycheck yine de hataları listeliyor:
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)
Git deposunda Emacs 24.5.1 ve en son flycheck kullanıyorum (26snapshot).