fendor
fendor
Currently, we remove the line that contains the import here: https://github.com/haskell/haskell-ide-engine/blob/master/src/Haskell/Ide/Engine/Plugin/Generic.hs#L200 Which is just wrong, we have to modify the import line correctly. My idea would be to reuse our...
I remember seeing these kind of errors when my terminal could not understand utf-8. Maybe your `locale` is not using UTF-8?
no, that looks right already
Hi, thank you for your bug report! Coul you link the logs? If you are using vscode, follow these instructions: https://github.com/alanz/vscode-hie-server#investigating-and-reporting-problems Alternatively, execute `hie --debug app/` in the root of...
Finally some time with government ordered self isolation. Can reproduce on linux and pin-point it to a bug in hie-bios.
I can even pin-point it to my own commit!
IIRC, `hie.yaml` should have the form: ```yaml cradle: direct: arguments: - -Wunused-binds - -Wunused-imports - -Worphans - -isrc - -icis194/week12 ``` But then this ought to work. Can you try...
> It is woriking, thanks! Glad to hear it :) > Is this the correct approach if I want to use hie (or ghcide or some other hie-bios powered tool)?...
> The project is ghci based (no stack, no cabal, by default), with compiler setings defined in this [.ghci](https://github.com/maxild/fp-course/blob/master/.ghci). I wasn't able to define the `hie.yaml` like this > >...
To ignore a specific file, take a look at the none cradle. E.g. assuming that your project root is `/Users/maxfire/Projects/haskell/fp-course`, your `hie.yaml` could look like this: ```yaml cradle: multi: -...