Eskild Diderichsen

Results 112 comments of Eskild Diderichsen

@sidyes did you make any progress on this? I'm trying to do the exact same

@sidyes I think I've found a solution. It's not ideal, but it'll do for now. You put an `.versionrc` file in each sub folder with the `"path": "."` config. Then...

I believe so. My initial test worked. But haven't used it in the wild yet. But wait. There's more! 🎈 🎉 I managed to improve upon it quite a bit....

Sure https://github.com/datorama/akita But line ending on checkout depend on your git settings and that one have ``` # .gitattributes * text=auto ``` Still prettier should complain about every line in...

Yep. checking format ```bash ❯ yarn prettier --check .\libs\akita\src\lib\updateEntities.ts yarn run v1.22.0 $ ~\Repos\akita\node_modules\.bin\prettier --check .\libs\akita\src\lib\updateEntities.ts Checking formatting... libs\akita\src\lib\updateEntities.ts Code style issues found in the above file(s). Forgot to run...

@ntotten are you not able to reproduce this? Can I assist any further?

Unfortunately it still runs with ```ini dotnet_diagnostic.IDE0050.severity = none ``` https://github.com/dotnet/roslyn/issues/50468 says it was fixed by making it a "refactoring" instead of a "code style analyzer". Isn't the underlaying problem...

The requests from Graph SDK can fairly simple be turned into RxJS using `defer` ```ts public getMe() { const request = this.graphClient .api('/me') .responseType(ResponseType.JSON); return defer(() => request.get()); } ```...

> Where does the `defer` function in your code example come from and what does it do? I have so far only encountered `defer` as an HTML attribute, and that...