Marcelo Shima

Results 573 comments of Marcelo Shima

I know it’s possible because of https://github.com/yeoman/environment/issues/164. I don’t know any public generator or example. I know that environment lookup and yo command doesn’t lists ts generators. But I will...

JHipster generates full stack applications. Backend side: SpringBoot/Quarkus/.Net/Node (Nest) Frontend side: Angular/React/Vue/Svelte > The classic, friendly tool for scaffolding web apps. This looks too limited. In issues I see Microsoft...

I confirm, microservices should not generate code related to user.

`return await` is not a good practice: https://eslint.org/docs/latest/rules/no-return-await If a promise is returned, the method is recommended to be async (avoids having to both catch errors and catch rejections): https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/promise-function-async.md

I’m ok with awaited return value. Always having async at `async () => axios.get()` is recommended by https://typescript-eslint.io/rules/promise-function-async/

I want to know @qmonmert opinion. I think we had similar code in the past.

> (Note: I have not committed `.eslintrc.json` as it would affect other components of `createAsyncThunk`, as well as Angular and Vue. This has been used only for verification.) Probably it’s...

> Personally I am against `return await` 🙂 this guy convinced me https://youtu.be/Pz2cL01bmwQ?t=774 I need time to watch the video and try to understand the examples, don't understand French 😄.