Harm Boschloo

Results 21 comments of Harm Boschloo

I guess the correct approach would be to generate a custom type instead of a record so the the input type can be recursive. But that would be quite a...

Yeah, sound like a good idea. Adding `encodeVariables` would be easy. For adding `decodeVariables` I'll have to have a look. Another option for `decodeVariables` would be to treat the variables...

> However I wonโ€™t be able to update a current value with before/after page cursors, e.g. { a | pageNumber = a.pageNumber + 1 } Good point. > I took...

Thank you for the report. Indeed that is not correct. I'll see if I can find some time to look into it.

I just publish v1.0.4 which should fix this issue. Please let me know if you experience any more problems.

Definitely possible. 5 was just an initial guess on how many would be needed, and it saved me some timing from adding more ๐Ÿ˜. However I think in general it's...

I did make the mapping functions to make selectors composable but they are currently not exposed. My initial though was to keep selectors a simple as possible. But your use...

> I took a look at the mapping functions, and they seem to only select a single entity? A selector (including the mapping functions) can do both a single entity...

I published a small package to do dictionary intersections. It's basically what the selectors do under the hood. Maybe it's interesting if you want a bit more flexibility. https://package.elm-lang.org/packages/harmboschloo/elm-dict-intersect/latest/

Thanks for looking into this! Oh naming things... ๐Ÿ™ˆ I guess something like `Rule.ignoreFixesForDirectories`. Or depending on the implementation `disableFixes...` or `skipFixes...` > I feel like ideally, this is something...