Elliot Cameron
Elliot Cameron
How would you feel about adding a function like my `tryTlsOrDegrade` into `http-client` itself? It's not *quite* as hacky since it will use the TLS connection if it can. It's...
It probably is, but I can imagine there are other consumers of `http-client` that are currently relying haphazardly on the user to construct the correct kind of `Manager` in order...
That's a known limitation at this point. Can you describe your use case a bit more? Perhaps we need to move more into the `Backend` type itself.
This is more properly an issue with reflex-platform since all the mobile integration is there. I think we may have a fix already incoming for this but I'd need to...
What if we didn't take an argument but instead inferred whether or not you wanted hlint based on the presence of an `.hlint.ymal` file?
The reasoning being: everyone using the repo should get the same exact output of `ob run` if they're on the same commit.
Right. It would only enable it if you had an .hlint.yaml file adjacent to .obelisk/impl.
Maybe even better would be a way to configure what your .hlint.yaml file should be via nix. Then you could even thunk it to some "company-wide config" or something....
I wonder if using `git ls-remote --get-url` instead of `git remote get-url` would solve this. Need to think about that.
The idea being: If you have an `insteadOf` config somewhere then `git ls-remote --get-url` will do the substitution whereas `git remote get-url` does not. Which URL should we be putting...