MartinSStewart

Results 75 comments of MartinSStewart

Another advantage of automatically adding line breaks to long lines is code generation. For example, elm-review rules can automatically make fixes to the users code. After it does that, elm-review...

You have a lot more insight into the challenges of adding `getQualifiedReference` than I do! The impression I get is that maybe elm-review needs to move up a level in...

I think this is a good use case for https://package.elm-lang.org/packages/MartinSStewart/elm-codec-bytes/latest/

I plan on releasing a package called `elm-serialize` which is improves upon `elm-codec-bytes`. I can write encoders/decoders with it and release it under `elm-syntax-serialize` (I'm already writing a `elm-geometry-serialize` and...

My understanding is that infix direction is only there because it's used in some intermediate parsing step. We should definitely remove it.

Haven't used this tool in a while but > On the other hand, generating files with true |> Expect.equal true assertions just to do type checking is kinda gross... doesn't...

Oh, it looks like it has already been fixed in master (if I look at the readme in this repo it says elm-ui). I guess the changes just need to...

This seems reasonable to me. Though, at the risk of bike-shedding, I prefer the name `Nonempty` over `NonEmpty` or `NonEmptyList`. It's short while being still clear in its meaning and...

Okay this is too much bikeshedding for me. I'm fine with NonEmptyList!

Will a user want to do math with the Integer or Floatable value? If it contains a string instead of an Int or Float then we've left it up to...