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
SH formats my GADTs instead of this:
data Foo a where SomeA :: String -> Foo () SomeB :: Bool -> Foo String SomeC :: String -> Foo ()
like this:
This is probably due to this setting
- records: equals: "same_line" # instead of # equals: "indent 2"
Is there some way to distinguish between GADTs and normal records so I can keep the "same_line" option but format GADT with an indent?
The text was updated successfully, but these errors were encountered:
weird, i cant even exec stylish-haskell with equals "same_line"
app/Effectful/Cereal.hs: <string>:68:41: error: parse error on input ::'
data BinGet :: Effect where GetWord8 (here):: BinGet m Word8
Sorry, something went wrong.
No branches or pull requests
SH formats my GADTs instead of this:
like this:
This is probably due to this setting
Is there some way to distinguish between GADTs and normal records so I can keep the "same_line" option but format GADT with an indent?
The text was updated successfully, but these errors were encountered: