We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
switch (ham) { case "spam": return 3; case blockTypes.skew: default: return 4; }
should pass
same with:
if (foo) { return 3; } else { return 4; }
I've made a PR to fix eslint-plugin-better's explicit-return rule: idmitriev/eslint-plugin-better#3 using the consistent-return rule from eslint core
The text was updated successfully, but these errors were encountered:
add explicitReturn flag to no-nill Fixes jfmengels#28
7026101
Allows rule users to use a slower, but more accurate must-return rule: eg, idmitriev/eslint-plugin-better#3
50e9679
e3fd7da
No branches or pull requests
should pass
same with:
I've made a PR to fix eslint-plugin-better's explicit-return rule: idmitriev/eslint-plugin-better#3 using the consistent-return rule from eslint core
The text was updated successfully, but these errors were encountered: