-
Notifications
You must be signed in to change notification settings - Fork 797
New issue
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
chore: Updates var
usage to let
#321
Conversation
- No longer uses `standard` directly, instead uses the [recommmend manual configuration](https://github.com/standard/eslint-config-standard) to allow for the addition of the [`no-var`](https://eslint.org/docs/rules/no-var) eslint rule. - Uses `eslint . --fix` after the configuration update to swap `var` usage to `let` see conventional-changelog#276
2 similar comments
This does move away from using the It looks like work might be picking up soon to get the rule introduced to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great! Thanks!
standard
directly, instead uses the recommmend manual configuration to allow for the addition of theno-var
eslint rule.eslint . --fix
after the configuration update to swapvar
usage tolet
see #276