Re: [racket-users] Re: [ANN] fmt: a Racket code formatter

2021-10-19 Thread Hendrik Boom
On Tue, Oct 19, 2021 at 11:07:58AM -0700, Sorawee Porncharoenwase wrote: > On Tue, Oct 19, 2021 at 7:01 AM Diego Crespo > mycontributiontothewo...@gmail.com > wrote: > > If you are curious about what the output looked like before, here is the > >

Re: [racket-users] Re: [ANN] fmt: a Racket code formatter

2021-10-19 Thread Sorawee Porncharoenwase
On Tue, Oct 19, 2021 at 7:01 AM Diego Crespo mycontributiontothewo...@gmail.com wrote: If you are curious about what the output looked like before, here is the > pasterack link of some of my code http://pasterack.org/pastes/23639. > Racket support

Re: [racket-users] Re: [ANN] fmt: a Racket code formatter

2021-10-19 Thread Diego Crespo
If you are curious about what the output looked like before, here is the pasterack link of some of my code http://pasterack.org/pastes/23639. Racket supports using brackets instead of parenthesis, but you typically only see it used in things like cond and let expressions. This was adding them to

Re: [racket-users] Re: [ANN] fmt: a Racket code formatter

2021-10-19 Thread Hendrik Boom
When I read this: > On Mon, Oct 18, 2021 at 6:14 PM Diego Crespo < > mycontributiontothewo...@gmail.com> wrote: > > > This is really cool. Between this, a Racket linter, and an LSP, Racket is > > seriously looking a lot better for larger teams. I ran it through some of > > my code and I'm curious

Re: [racket-users] Re: [ANN] fmt: a Racket code formatter

2021-10-18 Thread Sorawee Porncharoenwase
Don't get used to it. It's a bug! Fixed in https://github.com/sorawee/fmt/commit/e056aee1e9a3ea0a72a4c85075426fa76f037852. Thanks for the report! On Mon, Oct 18, 2021 at 6:14 PM Diego Crespo < mycontributiontothewo...@gmail.com> wrote: > This is really cool. Between this, a Racket linter, and an

[racket-users] Re: [ANN] fmt: a Racket code formatter

2021-10-18 Thread Diego Crespo
This is really cool. Between this, a Racket linter, and an LSP, Racket is seriously looking a lot better for larger teams. I ran it through some of my code and I'm curious about the decision to use brackets more liberally. I was surprised when it changed my methods in my classes to be bracketed,

[racket-users] Re: [ANN] fmt: a Racket code formatter

2021-10-18 Thread Diego Crespo
This is really cool. Between this, a Racket linter, and an LSP, Racket is seriously looking a lot better for larger teams. I ran it through some of my code and I'm curious about the decision to use brackets more liberally. I was surprised when it changed my methods in my classes to be bracketed,