2018-03-20 21:19:37 -04:00
|
|
|
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
|
|
;;; lang/haskell/doctor.el
|
2018-03-12 13:16:16 -04:00
|
|
|
|
|
|
|
(when (featurep! +dante)
|
|
|
|
(unless (executable-find "cabal")
|
2018-07-16 12:50:20 +02:00
|
|
|
(warn! "Couldn't find cabal, haskell-mode may have issues")))
|
2018-03-12 13:16:16 -04:00
|
|
|
|
|
|
|
(when (featurep! +intero)
|
|
|
|
(unless (executable-find "stack")
|
2018-06-27 19:35:41 +02:00
|
|
|
(warn! "Couldn't find stack. Intero will not work")))
|
2018-06-26 19:15:35 +02:00
|
|
|
|
2018-07-16 12:50:20 +02:00
|
|
|
(when (or (featurep! +dante) (featurep! +intero))
|
|
|
|
(unless (executable-find "hlint")
|
|
|
|
(warn! "Couldn't find hlint. Flycheck may have issues in haskell-mode")))
|
|
|
|
|
|
|
|
|