lang/haskell: mark intero as deprecated #2121

This commit is contained in:
Henrik Lissner 2019-12-08 16:13:12 -05:00
parent ae3316f0ae
commit a4494800b8
No known key found for this signature in database
GPG Key ID: 5F6C0EA160557395
3 changed files with 5 additions and 6 deletions

View File

@ -3,7 +3,8 @@
(after! projectile
(add-to-list 'projectile-project-root-files "stack.yaml"))
(cond ((featurep! +intero) (load! "+intero"))
;; TODO ghcide?
(cond ((featurep! +intero) (load! "+intero")) ; DEPRECATED
((featurep! +dante) (load! "+dante"))
((featurep! +lsp) (load! "+lsp")))

View File

@ -16,5 +16,3 @@
(when (or (featurep! +dante) (featurep! +intero))
(unless (executable-find "hlint")
(warn! "Couldn't find hlint. Flycheck may have issues in haskell-mode")))

View File

@ -6,7 +6,7 @@
(cond ((featurep! +dante)
(package! dante)
(package! attrap))
((featurep! +intero)
(package! intero))
((featurep! +lsp)
(package! lsp-haskell)))
(package! lsp-haskell))
((featurep! +intero) ; DEPRECATED
(package! intero)))