diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-24 16:30:20 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-24 16:30:20 -0500 |
| commit | 4404f70fe5f76f33b5a8fccb1d84c6f83e327be6 (patch) | |
| tree | d153c570ae0bf2082815cec5c6095e567de5ff60 /modules/flycheck-config.el | |
| parent | 4d614a7edf4b95565d2c5d797e9ee030b090bda5 (diff) | |
| download | dotemacs-4404f70fe5f76f33b5a8fccb1d84c6f83e327be6.tar.gz dotemacs-4404f70fe5f76f33b5a8fccb1d84c6f83e327be6.zip | |
docs(load-graph): classify dev, diff, help, lint, and VC modules
Fifth classification batch: the development-workflow entry points and package config — coverage-core, coverage-elisp, dev-fkeys, diff-config, help-config, help-utils, flycheck-config, test-runner, vc-config. I annotated each header, added a Batch 5 table to the inventory, and extended the validation allowlist. 42 of 102 modules are now classified.
Two more hidden dependencies turned up, both about cj/custom-keymap. dev-fkeys repeats the custom-buffer-file boundp shim for its C-; P binding. flycheck-config binds (:map cj/custom-keymap ...) through use-package without requiring keybindings, so it fails to load standalone. Both recorded for the Phase 2 dependency pass.
Diffstat (limited to 'modules/flycheck-config.el')
| -rw-r--r-- | modules/flycheck-config.el | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/modules/flycheck-config.el b/modules/flycheck-config.el index f064cb137..8932a3acf 100644 --- a/modules/flycheck-config.el +++ b/modules/flycheck-config.el @@ -2,7 +2,18 @@ ;; author Craig Jennings <c@cjennings.net> ;;; Commentary: - +;; +;; Layer: 2 (Core UX). +;; Category: C/P. +;; Load shape: eager. +;; Eager reason: general linting setup; spec target is hook-loaded, a deferral +;; candidate. +;; Top-level side effects: package configuration via use-package, binds into +;; cj/custom-keymap through use-package :map. +;; Runtime requires: keybindings is needed for the cj/custom-keymap :map binding +;; but is not required here; the binding fails standalone. Phase 2 fix. +;; Direct test load: conditional (needs cj/custom-keymap for the :map binding). +;; ;; This file configures Flycheck for on-demand syntax and grammar checking. ;; - Flycheck starts automatically only in sh-mode and emacs-lisp-mode |
