https://github.com/karimaziev/flymake-hydra-lint
Flymake backend for linting hydras.
https://github.com/karimaziev/flymake-hydra-lint
flymake flymake-backend hydra
Last synced: 4 months ago
JSON representation
Flymake backend for linting hydras.
- Host: GitHub
- URL: https://github.com/karimaziev/flymake-hydra-lint
- Owner: KarimAziev
- License: gpl-3.0
- Created: 2022-06-24T09:43:09.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-21T11:56:25.000Z (almost 4 years ago)
- Last Synced: 2025-01-07T18:21:38.912Z (over 1 year ago)
- Topics: flymake, flymake-backend, hydra
- Language: Emacs Lisp
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
* flymake-hydra-lint
A flymake backend to check dublicated keys in hydras.
** Installation
*** Manually
Download repository and it to your load path in your init file:
#+begin_src elisp :eval no
(add-to-list 'load-path "/path/to/flymake-hydra-lint/")
(require 'flymake-hydra-lint)
(add-hook 'emacs-lisp-mode-hook #'flymake-hydra-lint)
#+end_src
*** With use-package and straight
#+begin_src elisp :eval no
(use-package flymake-hydra-lint
:straight (:repo "KarimAziev/flymake-hydra-lint" :type git :host github)
:commands (flymake-hydra-lint)
:hook (emacs-lisp-mode . flymake-hydra-lint))
#+end_src
** Commands
+ ~flymake-hydra-lint~
Add hydra linters to ~flymake-diagnostic-functions~ and run flymake.