diff options
author | Javier Olaechea <pirata@gmail.com> | 2025-01-03 11:32:38 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2025-01-03 11:59:35 +0100 |
commit | 166625ec0d8e074d17dd763207d230cb01e2b1d1 (patch) | |
tree | 657dde422c363465368713d500b3295753ccb817 /gnu/packages/emacs-xyz.scm | |
parent | b1fed4ca569c99d5b4fd7e5cfff4c8c63d9cad17 (diff) |
gnu: Add emacs-eslint-flymake.
* gnu/packages/emacs-xyz.scm (emacs-eslint-flymake): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Change-Id: Icc17900bdbb9ebe26c9678f2f5781bf50b54d402
Diffstat (limited to 'gnu/packages/emacs-xyz.scm')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index e9e230c9fd..049abf7bf1 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -7430,6 +7430,28 @@ whose goal is to provide colorful yet legible options for users who want something with a bit more flair than the Modus themes.") (license license:gpl3+))) +(define-public emacs-eslint-flymake + (let ((commit "c78246330ee3ac1e0e07a709473d98a113d268e5") + (revision "1")) + (package + (name "emacs-eslint-flymake") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emacs-pe/eslint-flymake") + (commit commit))) + (sha256 + (base32 "19h95k57hrsysmvqzillzfn6wcinvcidv14fvbaqxgigwfwj0jnw")))) + (build-system emacs-build-system) + (propagated-inputs (list emacs-flymake)) + (home-page "https://github.com/emacs-pe/eslint-flymake") + (synopsis "ESLint backend for Flymake") + (description + "This package lets Flymake run ESLint on the current buffer.") + (license license:gpl3+)))) + (define-public emacs-espuds (package (name "emacs-espuds") |