summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rodion/packages/emacs.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/rodion/packages/emacs.scm b/rodion/packages/emacs.scm
index d603c04..456b719 100644
--- a/rodion/packages/emacs.scm
+++ b/rodion/packages/emacs.scm
@@ -96,3 +96,24 @@ This package has been written to leverage tree-sitter parsing facilities, allowi
(file-name (git-file-name name version))
(sha256
(base32 "1kaf3p6g46rvbiyrkfmpflhdvzz9bdqsq1m02496py92399x3knz")))))))
+
+(define-public emacs-flymake-eslint
+ (let ((commit "6ab909b85a8e97815db9831cdd5f283a7830177f")
+ (revision "1"))
+ (package
+ (name "emacs-flymake-eslint")
+ (version (git-version "0" revision commit))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/orzechowskid/flymake-eslint")
+ (synopsis "Flymake backend for Javascript using eslint")
+ (description "Flymake backend for Javascript using eslint.")
+ (license license:expat)
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/orzechowskid/flymake-eslint.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "19jyim5rrmv8bdskaw8gxb6fch3jj3irqhddi2aaxvgdxn321yxm")))))))