aboutsummaryrefslogtreecommitdiff
path: root/modules/flycheck-config.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-07-14 00:24:34 -0500
committerCraig Jennings <c@cjennings.net>2026-07-14 00:24:34 -0500
commit0058495e770bb63e41c6e7d52067000d52842ecd (patch)
treea2889546bf8f24f5e9def4f78648493df212781c /modules/flycheck-config.el
parent3d5b14295c0e7ebb1c6ad0109d0fbf291696ef1e (diff)
downloaddotemacs-0058495e770bb63e41c6e7d52067000d52842ecd.tar.gz
dotemacs-0058495e770bb63e41c6e7d52067000d52842ecd.zip
fix(flycheck): drop the checkdoc suppression that never worked
The :custom block set checkdoc-arguments, a variable that doesn't exist. Checkdoc has no such option and this flycheck runs checkdoc through a fixed subprocess form, so the intended suppression of two warning types never happened. Removing it changes no behavior. If those checkdoc warnings need silencing, that's a feature against flycheck-emacs-lisp-checkdoc-form.
Diffstat (limited to 'modules/flycheck-config.el')
-rw-r--r--modules/flycheck-config.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/modules/flycheck-config.el b/modules/flycheck-config.el
index 6ffe3ea2..ad762b3b 100644
--- a/modules/flycheck-config.el
+++ b/modules/flycheck-config.el
@@ -53,10 +53,12 @@
(:map cj/custom-keymap
("?" . cj/flycheck-list-errors))
:custom
- ;; Only disable these two Checkdoc warnings; leave all others intact.
- (checkdoc-arguments
- '(("sentence-end-double-space" nil)
- ("warn-escape" nil)))
+ ;; No checkdoc suppression here: the old `checkdoc-arguments' entry named a
+ ;; variable that doesn't exist (checkdoc has no such option and this
+ ;; flycheck runs checkdoc via a fixed subprocess form), so it never
+ ;; suppressed anything. Removing it changes no behavior; if specific
+ ;; checkdoc warnings need silencing, that's a new feature against
+ ;; `flycheck-emacs-lisp-checkdoc-form'.
;; Modeline customization (rendered via mode-line-format in modeline-config.el).
;; The count portion picks up `error' / `warning' faces because
;; `flycheck-mode-line-color' stays t (the default).