2022-01-25 22:53:36 -03:00
|
|
|
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
|
|
;;; lang/clojure/doctor.el
|
|
|
|
|
2022-08-12 20:29:19 +02:00
|
|
|
(when (and (modulep! :checkers syntax)
|
|
|
|
(not (modulep! +lsp)))
|
2022-01-25 22:53:36 -03:00
|
|
|
(unless (executable-find "clj-kondo")
|
|
|
|
(warn! "Couldn't find clj-kondo. flycheck-clj-kondo will not work.")))
|
2022-08-16 08:14:49 +01:00
|
|
|
|
|
|
|
(when (modulep! :editor format)
|
|
|
|
(unless (executable-find "zprint")
|
|
|
|
(warn! "Couldn't find zprint. Formatting will be disabled.")))
|