-
Notifications
You must be signed in to change notification settings - Fork 100
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
Add new plugins #243
Comments
|
What's your opinion of https://github.com/lspitzner/brittany as a replacement for hindent? |
Does seem to have smarter newline wrapping though: From Hindent: userResetRequest :: Request
userResetRequest =
baseRequest & setRequestPath "/ToolNavigation.asp" &
setRequestBodyURLEncoded
[ ("FactoryDefaultConfirm", "0")
, ("RestoreDefaultsNo", "0x00")
, ("UserResetYes", "0x01")
] From brittany: userResetRequest :: Request
userResetRequest =
baseRequest & setRequestPath "/ToolNavigation.asp" & setRequestBodyURLEncoded
[ ("FactoryDefaultConfirm", "0")
, ("RestoreDefaultsNo" , "0x00")
, ("UserResetYes" , "0x01")
] The showcase output compared to hindent is more pleasing to me too: https://github.com/lspitzner/brittany/blob/71d7abc00793681fba056040fd38c65c6abb8b94/Showcase.md
|
Brittany is now on Stackage. So if/when we want to switch to it, should be easy to do. |
Nice! 🎉 Would be good to test out |
The text was updated successfully, but these errors were encountered: