Causing "not a valid syntax checker" errors because it haskell-hlint was defined too soon.
8 lines
270 B
EmacsLisp
8 lines
270 B
EmacsLisp
;;; lang/haskell/+dante.el -*- lexical-binding: t; -*-
|
|
;;;###if (featurep! +dante)
|
|
|
|
(def-package! dante
|
|
:hook (haskell-mode . dante-mode)
|
|
:config
|
|
(when (featurep! :feature syntax-checker)
|
|
(flycheck-add-next-checker 'haskell-dante '(warning . haskell-hlint))))
|