Make haskell-hlint setup DRY
This commit is contained in:
parent
ef4d5827a1
commit
0a4cdf8202
3 changed files with 9 additions and 10 deletions
|
@ -15,5 +15,11 @@
|
|||
(set-lookup-handlers! 'haskell-mode :definition #'haskell-mode-jump-to-def-or-tag)
|
||||
(set-file-template! 'haskell-mode :trigger #'haskell-auto-insert-module-template :project t)
|
||||
(set-repl-handler! '(haskell-mode haskell-cabal-mode literate-haskell-mode) #'+haskell-repl-buffer)
|
||||
(add-to-list 'completion-ignored-extensions ".hi"))
|
||||
(add-to-list 'completion-ignored-extensions ".hi")
|
||||
|
||||
(when (featurep! :feature syntax-checker)
|
||||
(after! flycheck
|
||||
(dolist (checker (delq nil (list (if (featurep! +intero) 'intero)
|
||||
(if (featurep! +dante) 'haskell-dante))))
|
||||
(flycheck-add-next-checker checker '(warning . haskell-hlint))))))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue