-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
Bad conditional formatting #72
Comments
Discovered here: haskell/haskell-language-server#4229 (comment) |
Rather than my janky It will require a bit of a rework to parse the arguments for |
Unfortunately the if !((x || y) && z) The AST will be correct, but simply rendering it will give you this: if !x || y && z That could potentially be fixed by using a |
The various (Also they're case-insensitive, but that's not controlled by the strictness.) |
There should be a space before
&&
.The text was updated successfully, but these errors were encountered: