We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The module name before the do keyword when using the -XQualifiedDo language extension is incorrectly removed by Hindent.
do
-XQualifiedDo
Input haskell
{-# LANGUAGE QualifiedDo #-} module Main where foo :: () foo = Main.do ()
Expected output haskell
Actual output haskell
{-# LANGUAGE QualifiedDo #-} module Main where foo :: () foo = do ()
The text was updated successfully, but these errors were encountered:
I created a pull request with an attempted fix: #696 First time creating a pull request on a public repo, so apologies if I did anything wrong
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Problem
The module name before the
do
keyword when using the-XQualifiedDo
language extension is incorrectly removed by Hindent.Input haskell
Expected output haskell
Actual output haskell
The text was updated successfully, but these errors were encountered: