↧
Answer by quazgar for How to prevent flycheck from treating my init.el as a...
The answer by @mpettigr is mostly correct, the given lines will satisfy flycheck for the file header (except that flycheck expects a newline after Commentary:).Especially if you start a new elisp file,...
View ArticleAnswer by mpettigr for How to prevent flycheck from treating my init.el as a...
Here's the format that the checker is actually expecting:;;; init.el --- Initialization file for Emacs;;; Commentary: Emacs Startup File --- initialization for EmacsIf you place this at the top of your...
View ArticleAnswer by user227 for How to prevent flycheck from treating my init.el as a...
Add emacs-lisp-checkdoc to flycheck-disabled-checkers:(setq-default flycheck-disabled-checkers '(emacs-lisp-checkdoc))
View ArticleHow to prevent flycheck from treating my init.el as a package file?
If flycheck-mode is enabled for my init.el, I got the following kinds of errors:The first line should be of the form: ";;; package --- Summary" (emacs-lisp-checkdoc)...The footer should be: (provide...
View Article
More Pages to Explore .....