-
-
Notifications
You must be signed in to change notification settings - Fork 205
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
Add useAt
option to autofix .lastObject
to .at(-1)
in no-get
rule
#1847
Add useAt
option to autofix .lastObject
to .at(-1)
in no-get
rule
#1847
Conversation
.lastObject
to .at(-1)
in no-get
rule
This is a nice improvement. However, I don't think we can make this the default behavior until Node 16 becomes end-of-life in Sept, 2023. We could put this behind an option https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/at |
@bmish Thanks for the advice. I'd assume the default value of |
We need to keep this feature turned off by default until we drop the corresponding Node version support. So |
511e895
to
63e0286
Compare
Looking forward to seeing this get in still! It's nearly finished. |
Sorry I was sidetracked by other stuff. Will have an update today. |
.lastObject
to .at(-1)
in no-get
ruleuseAt
option to autofix .lastObject
to .at(-1)
in no-get
rule
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.
Thanks!
.lastObject
autofix rule can be simplified as.lastObject
==>.at(-1)
.We can lift the limit of handling only one
.lastObject
in path as well.