diff options
| author | Craig Jennings <c@cjennings.net> | 2025-10-29 00:50:56 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-10-29 00:50:56 -0500 |
| commit | 75291f93e08b65aabc9b49003ca471554360f426 (patch) | |
| tree | bc691ad382ca68168b51e2036c0f88f8078518bd | |
| parent | e2f4738e880ff7ccbdee5ec7589d1e61b853cbec (diff) | |
feat: ensure elisp-lint auto-installs via use-package
Add :ensure t to elisp-lint use-package declaration to guarantee
it's always installed. This supports chime.el development workflow
where 'make lint' provides comprehensive code quality checks.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
| -rw-r--r-- | modules/prog-lisp.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/prog-lisp.el b/modules/prog-lisp.el index 7693c253..cfa015ae 100644 --- a/modules/prog-lisp.el +++ b/modules/prog-lisp.el @@ -97,9 +97,12 @@ :commands (with-mock mocklet mocklet-function)) ;; mock/stub framework ;; --------------------------------- Elisp Lint -------------------------------- +;; Comprehensive linting for Emacs Lisp code (indentation, whitespace, etc.) +;; Used by chime.el 'make lint' target for code quality checks (use-package elisp-lint - :commands (elisp-lint-file elisp-lint-directory)) + :ensure t + :commands (elisp-lint-file elisp-lint-directory elisp-lint-files-batch)) ;; ------------------------------ Package Tooling ------------------------------ |
