doomemacs/modules/lang/kotlin/doctor.el

9 lines
269 B
EmacsLisp
Raw Normal View History

2019-03-29 09:19:11 +08:00
;;; lang/kotlin/doctor.el -*- lexical-binding: t; -*-
(unless (executable-find "ktlint")
(warn! "ktlint not found. flycheck-kotlin won't work."))
2019-11-29 10:53:46 +08:00
(assert! (or (not (featurep! +lsp))
(featurep! :tools lsp))
"This module requires (:tools lsp)")