This is provided as a +feature on clojure because joker is not included in the standard clojure distribution, and I wouldn't assume a given clojurist has or wants to have it installed. But I think installing it is the least-fuss option for syntax-checking clojure/script code in emacs with flycheck.
9 lines
210 B
EmacsLisp
9 lines
210 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/clojure/packages.el
|
|
|
|
(package! cider)
|
|
(package! clj-refactor)
|
|
|
|
(when (and (featurep! :feature syntax-checker)
|
|
(featurep! +joker))
|
|
(package! flycheck-joker))
|