Jan Hrcek

Results 103 comments of Jan Hrcek

Not sure how to do it via package.yaml, but in stack you can enable building haddocks for all your dependencies by putting this at the top level of you stack.yaml:...

I don't understand how the fix works (will leave review to people who understand it better) but great that you managed to resolve it. Do you have any estimate how...

Seems like stylish's [loadConfig](https://hackage.haskell.org/package/stylish-haskell-0.14.6.0/docs/Language-Haskell-Stylish-Config.html#v:loadConfig) already supports specifying directory as argument (Maybe FilePath). We just need to pass Just instead of Nothing, or am I missing something?

Ok, the `Maybe FilePath` is the path to the stylish config file itselt, not to a "starting directory" as I imagined. So this will require some upstream changes after all...

Hint for anyone looking into fixing this This seems to happen when the unused field is a record field selector (for both data and newtypes). When these are unused, GHC...

This behavior should have been made less likely after https://github.com/haskell/haskell-language-server/pull/4076 Though the bug is still present and we're tracking it in https://github.com/haskell/haskell-language-server/issues/4093 I was trying to find the exact place...

I confirm I can reproduce the issue with the latest versions of apply-refact + latest hlint. I saw ghc-exactprint 1.6.1.3 being used when installing apply-refact (as I installed hlint +...

Found this https://github.com/mpickering/apply-refact/issues/140 so even though the issue might have been fixed in ghc-exactprint, it seems to be still present in apply-refact..?

Thanks for working on this, I made similar changes but with latest ghc 9.12.2 in https://github.com/haskell/docker-haskell/pull/151 Changes coming to official images repo today or tomorrow.