अगर फ्लाई -चैट-मोड मेरे 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)
मैं पैकेज के रूप में अपने init.el के इलाज से फ्लाईकैच को कैसे रोक सकता हूं?
संपादित करें
मैंने न्यूनतम स्टार्ट अप फ़ाइल का अनुसरण करने की कोशिश की:
;; 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)
मैं 24.5.1 Emacs और git रिपॉजिटरी (26snapshot) में नवीनतम फ्लाइचेक का उपयोग कर रहा हूं।