Luper Rouch
Luper Rouch
Looking at `ts-migrate` code, the error comes from here, in `ts-migrate-plugins/build/src/plugins/utils/react.js`: ```js function isReactSfcFunctionDeclaration(functionDeclaration) { return (functionDeclaration.name != null && /^[A-Z]\w*$/.test(functionDeclaration.name.text) && functionDeclaration.parameters.length
Good detective work thank you! I'm sure this will help others a great deal, editing the hundreds of comments by hand was not fun at all :]
I had the same error and solved it by running `npx tsc --init` before `npx -p ts-migrate -c "ts-migrate-full ."`
I implemented retries in my download code, it's fairly complete (backoff factor + number of retries, or user-defined function), feel free to use it if you want: https://github.com/flupke/hackney_message_bug/blob/master/lib/hackney_message_bug.ex
I'm seeing the same error with latest git 2.37.3. The error appeared starting at `eslint-plugin-diff` version 1.0.16.
And I'm also invoking it with the `ESLINT_PLUGIN_DIFF_COMMIT` env var: ``` ESLINT_PLUGIN_DIFF_COMMIT=main.. yarn lint --config .eslintrc-ci-diff.js --color frontend/src/**/*.ts frontend/src/**/*.tsx ```
This feature would help us cache our Dialyzer PLT files. Currently we save the PLTs as artifacts and put them in GitHub Actions cache, as described in [dialyxir docs](https://github.com/jeremyjh/dialyxir#github-actions): ```earthfile...
Hello José, thanks for your wonderful work :) Here is a use case I came across that might benefit from multiple processors: - `[producer]` get youtube URL from SQS -...
> This should not be an issue in practice because we rescue any failure during process. The one_for_all is really to handle bugs in Broadway which should not happen. I...
The API could be: ``` def filter_range(set, min \\ nil, max \\ nil) -> list of members ``` I think `filter` is too similar to `Enum.filter/2`, one would expect it...