Prasanth Somasundar

Results 16 comments of Prasanth Somasundar

I'm not sure if yarn.lock was added to the gitignore for a reason I'm missing, but it seemed contradictory to its intended purpose as I mentioned above. I created this...

That makes some sense - though that somewhat implies both npm and yarn are being used to manage the project which sounds strange given that the project specifically uses npm....

I took a quick look, and it seems that fixity/precedence is indeed found in [the interface for the file](https://hackage.haskell.org/package/ghc-8.4.1/docs/HscTypes.html#t:ModIface). You can get one of these interfaces using the [`LoadIface module`](https://hackage.haskell.org/package/ghc-8.4.1/docs/LoadIface.html)...

The idea is that commands can have configuration that's shared across sub commands with sub commands adding additional args. Let's say the parent command has 10 parameters, it becomes quickly...

You can work around this by vendoring betterproto yourself to your path. Buf is still handling almost everything outside of supplying the plugin. ```toml # pyproject.toml dependencies = [ "betterproto[compiler]>=2.0.0b6",...

Thanks a lot. I think this should fix a number of type problems when using the library.

Maybe I'm missing something, but ```python from typing import Any, Generic, Sized, TypeVar T = TypeVar("T", contravariant=True) class Matcher(Generic[T]): def matches(self, _: T) -> bool: ... def greater_than(_: Any) ->...

I can give it a shot later when I get some time. Probably won't be for a bit though.

There are a number of other improvements around the auto-import feature, but I suspect that it would be best to split them into multiple requests so that each can be...

Thanks folks. Sorry about the delay in responding here; I've been a bit swamped and lost track of this. Thanks for the clarity around the `full` mode. I'll track that...