Maxwell Brown

Results 90 comments of Maxwell Brown

I think this is overall a matter of preference, but the purpose of `docs-ts` in my opinion is to output documentation that somewhat mirrors the structure of your source code....

This is a great point - I would favor changing the `prettier` config in the codebas (set the `printWidth` to `80`), rather than forcing users to install another dependency. @gillchristian...

While I think this is potentially useful, I think it is outside the scope of the library. I think the biggest issue for me here is the work that is...

That is very true - I do think this could be super useful to someone trying to figure out what the rendered docs would look like, especially with other themes....

This is a good point - I think I would favor adding this to the documentation over including it as a peerDependency. @gillchristian - what do you think?

Hey @waynevanson! I would definitely be open to exploring the use of the typescript compiler directly as opposed to `ts-morph`. I ran into quite a few bugs when working on...

Hey @waynevanson The overloaded implementation of `fromPredicate` in `fp-ts` for a `Refinement` accepts a third type parameter `E`. You can avoid the assertion in the `onLeft` argument by specifying the...

Hello Francis, First of all, let me say that I am thoroughly enjoying the LLJS series on YouTube. I am very much looking forward to the next installment of the...

@francisrstokes @jeffrose I would also be interested in contributing examples. I don’t want to steal Jeff’s thunder though, so please let me know how I can help. Perhaps I could...

Two issues I continually ran across when I was trying to use this library for parsing Lua were [operator precedence](https://en.wikipedia.org/wiki/Operator-precedence_parser) and [left-recursion](https://en.wikipedia.org/wiki/Left_recursion). Perhaps I could look into how [existing work](http://richard.myweb.cs.uwindsor.ca/PUBLICATIONS/PREPRINT_PADL_NOV_07.pdf)...