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
e.g.
Object.keys(commands) .map((key) => { return commands[key]; }) .forEach((cmd) => { if (cmd.yargsSetup) { cmd.yargsSetup(); } if (cmd.examples) { cmd.examples(); } });
warn that Object.keys can be replaced with _.keys.
Object.keys
_.keys
This would be great for consistency.
The text was updated successfully, but these errors were encountered:
This is already implemented in other project: https://github.com/wix/eslint-plugin-lodash3/blob/master/docs/rules/prefer-lodash-method.md
Sorry, something went wrong.
No branches or pull requests
e.g.
warn that
Object.keys
can be replaced with_.keys
.This would be great for consistency.
The text was updated successfully, but these errors were encountered: