Results 289 comments of Brandon Chinn

👋 @Anrock Thank you for opening this PR and being patient while we sorted out how to handle all the new contributions for new configuration options! If you haven't noticed,...

Orthogonal, but related, to https://github.com/fourmolu/fourmolu/pull/130

Checklist: - [x] `CHANGELOG.md` has been updated - [x] Configuration docs in `README.md` have been updated - [x] `fourmolu.yaml` updated to stay in sync with config in `README.md`

As an example, I'm doing the following right now: ```hs "withCondition" ~> \stree -> pure @SubM $ case condition of Nothing -> stree Just cond -> concat [ [TextBlock $...

I'd be happy to submit a PR, but I'm not quite sure what the best way forward is. The mustache spec requires that lambdas pass through the raw template text,...

I started work in https://github.com/JustusAdam/mustache/pull/50. I also added the spec tests related to lambdas, and I'm running into two issues: 1. What should I replace the TODO with in [`Text.Mustache.Parser`](https://github.com/JustusAdam/mustache/pull/50/files#diff-dbf633999355d56cd9b8017f744b186c145cf11d9d496e5c3442b732273936a3)?...

So actually, `overText` is sufficient for my use case, so I have no pressing need to implement this. And for most use cases, `overText` is probably sufficient. However, it's not...

hm so i implemented this and tried using it, but postguard isn't happy, since we now have `sql` templates that aren't valid SQL queries by themselves. One solution is to...

@andywer In thinking about how I want this to work in my project, what do you think about the following: ```ts sql` SELECT * FROM "song" WHERE ${sql.and( query &&...