MartinSStewart
MartinSStewart
This code will succeed in parsing even though it's not valid Elm syntax (even elm-format will fail to parse it) ```elm foo = case Nothing of Nothing -> a b...
Appveyor fails on every build and seems difficult to fix https://github.com/stil4m/elm-syntax/pull/106 Also it seems redundant since we have CI that runs tests and publishes already. Can we just remove appveyor...
The following module won't parse likely due to the extra line breaks in the code. ```elm module Env exposing (..) -- The Env.elm file is for per-environment configuration. -- See...
One problem I have when working with elm-syntax is that I spend a lot of time deconstructing types or fixing compiler errors related to forgetting to use `Node.value` on what...
Parsing GLSL blocks would be nice to have (read: high effort, low reward). Might have some uses in combination with elm-review but maybe not. I'm creating this issue so the...
This is a continuation of https://github.com/stil4m/elm-syntax/pull/55#discussion_r440613435 I personally think, if we are going to make a breaking change to the JSON data, we should swap out the JSON encoders/decoders we...
There are a few places in elm-syntax where using `List.Nonempty`* instead of `List` could prevent needing to deal with impossible cases. The ones I've been able to find are *...
I've noticed that the Debug.log messages aren't shown until the tests are completed. Unfortunately this means that if I have a test that hangs I need to kill the test...
elm-review is cool (very cool!), but sometimes I don't use it because I don't want to deal with NPM and Node. There seems to be support for converting an NPM...
I think it would be useful to have `Array2D Color -> Image` where Array2D is from https://package.elm-lang.org/packages/tortus/elm-array-2d/latest/. This would remove uncertainty around whether the pixels needs to be passed in...