dustinspecker / eslint-plugin-no-use-extend-native

ESLint plugin to prevent use of extended native objects
MIT License
56 stars 4 forks source link

Support Object.entries #94

Closed dvdln closed 7 years ago

dvdln commented 7 years ago

Using Object.entries produces an error:

Avoid using extended native objects (no-use-extend-native/no-use-extend-native)

It's a native method in Node 7+. And on track for ES2017, I believe.

dustinspecker commented 7 years ago

Thanks for reporting this.

Did you install it more than a week ago (or shrinkwrap/lock it)? Can you try reinstalling eslint-plugin-no-use-extend-native please? It had a dependency update a week ago that should add support for Object.entries.

See more in #93.

dvdln commented 7 years ago

That was the problem, it's working for me now. Thank you :)