Skip to content

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

0.3.2

16 Nov 23:20
Compare
Choose a tag to compare

fix(rules): null check node.parent.property

0.3.0

03 Nov 02:42
Compare
Choose a tag to compare
  1. feat(rules): add support for accessing prototype
    • Cases such as Array.prototype.map are now analyzed for correctness.

Just like v0.2.0, this should not be a breaking change, just another precaution in case of an oversight that causes false positives.

0.2.0

01 Nov 16:06
Compare
Choose a tag to compare
  1. feat(rules): lint getter/setter vs. prototype method
    • If a getter/setter is called as a function, this plugin returns an error
    • Prototype methods can still be called as a function or expression (var fn = new Object().toString;)

This shouldn't be a breaking change because calling a getter/setter as a function throws JS errors anyways; it's really a fix. The version bump is a precaution in case there are false positives that arise from this change.