flycheck-haskell
flycheck-haskell copied to clipboard
Improved Haskell support for Flycheck
When using a project with cabal new-style builds, flycheck always prints and error about not being able to find dependencies, since they are not in the global ghc store.
On a typical day at work I load 10-30 cabal projects, and the first file I open in each takes ~ 4 seconds to load. I have `flycheck-haskell-setup` in my...
Hello :wave: I have huge performance issues with using flycheck-haskell on any project that doesn't use stack as a build tool. Even basic text editing is incredibly slow while working...
Every time I try to run `flycheck-haskell-setup` I get an error: ``` Reading Haskell configuration failed with exit code 1 and ouput: get-cabal-configuration.hs: user error (mzero) ``` That is the...
The error is probably due to this project using Nix for it's dependencies. And emacs is not running within the nix-context. I've tried to disable this with either of these...
Stack offers the option for building against a Docker container : https://docs.haskellstack.org/en/stable/docker_integration What's the recommended way for getting flycheck to pass the `--docker` flag to `stack` in order to use...
From https://github.com/flycheck/flycheck/issues/1441: > The Stack build tool has a feature for making self-contained Haskell scripts ([documentation](https://docs.haskellstack.org/en/stable/GUIDE/#script-interpreter)). An example script may be: > > ```haskell > #!/usr/bin/env stack > {- stack...