Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/themattchan/flycheck-liquidhs.el

Flycheck checker for LiquidHaskell
https://github.com/themattchan/flycheck-liquidhs.el

Last synced: 4 days ago
JSON representation

Flycheck checker for LiquidHaskell

Awesome Lists containing this project

README

        

# flycheck-liquidhs.el

[LiquidHaskell](https://github.com/ucsd-progsys/liquidhaskell) Flycheck
integegration.

*Now uses `stack` by default* (to change the default behavior, change the
`flycheck-haskell-liquid-executable` variable through `M-x customize`).

## Usage

To enable, add this to your `init.el`

```
(require 'flycheck-liquidhs)
(add-hook 'haskell-mode-hook
'(lambda () (flycheck-select-checker 'haskell-liquid)))

(add-hook 'literate-haskell-mode-hook
'(lambda () (flycheck-select-checker 'haskell-liquid)))
```