mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Causing "not a valid syntax checker" errors because it haskell-hlint was defined too soon.
9 lines
270 B
EmacsLisp
9 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))))
|