Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After update from 2.33.0 to 2.35.0 I started to get this error:
Error: /Users/shifrinb2/workspace/commons/.eslintrc.yml: Configuration for rule "flowtype/require-return-type" is invalid: Value "never" must be an enum value.
My .eslintrc.yml:
.eslintrc.yml
flowtype/require-return-type: [error, never, {annotateUndefined: never}]
Before this setting works just fine
The text was updated successfully, but these errors were encountered:
Same issue here.
This causes a failure:
"flowtype/require-return-type": [2, { "excludeArrowFunctions": "expressionsOnly", }],
While this does not:
"flowtype/require-return-type": 2,
After looking at the source, it seems like any rule that accepts an object OR a string as the 2nd argument will fail.
Sorry, something went wrong.
No update on this yet?
any updates?
Simple to fix. PR is welcome.
aca8583
🎉 This issue has been resolved in version 5.1.1 🎉
The release is available on:
Your semantic-release bot 📦🚀
No branches or pull requests
After update from 2.33.0 to 2.35.0 I started to get this error:
My
.eslintrc.yml
:Before this setting works just fine
The text was updated successfully, but these errors were encountered: