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
When setting "formatting"."layout"."type" to "vertical" or "try-oneline" (with a long declaration) and "formatting"."indent"."typesig": "indent-by 2"
"formatting"."layout"."type"
"formatting"."indent"."typesig": "indent-by 2"
I would expect the following formatting:
function :: Bool -> Int -> Double -> String -> [Int] -> Either (Maybe String) Bool -> IO Bool function = undefined
However, floskell instead produces
That is, the first Parameter is on the wrong line
setting "formatting"."indent"."typesig": "align" actually does produce the desired behaviour as long as the function name is 16 characters or longer.
"formatting"."indent"."typesig": "align"
This seems like a bug to me.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When setting
"formatting"."layout"."type"
to "vertical" or "try-oneline" (with a long declaration) and"formatting"."indent"."typesig": "indent-by 2"
I would expect the following formatting:
However, floskell instead produces
That is, the first Parameter is on the wrong line
setting
"formatting"."indent"."typesig": "align"
actually does produce the desired behaviour as long as the function name is 16 characters or longer.This seems like a bug to me.
The text was updated successfully, but these errors were encountered: