lang/haskell: fix haskell-hlint checker

Causing "not a valid syntax checker" errors because it haskell-hlint was
defined too soon.
This commit is contained in:
Henrik Lissner
2018-07-17 23:47:57 +02:00
parent e8d4b74c29
commit 2968374081
3 changed files with 8 additions and 9 deletions

View File

@ -2,4 +2,7 @@
;;;###if (featurep! +dante)
(def-package! dante
:hook (haskell-mode . dante-mode))
:hook (haskell-mode . dante-mode)
:config
(when (featurep! :feature syntax-checker)
(flycheck-add-next-checker 'haskell-dante '(warning . haskell-hlint))))