remithomas / eslint-plugin-ban

Ban some methods and functions
ISC License
31 stars 3 forks source link

Not working on nested member expression #8

Closed cpylua closed 4 years ago

cpylua commented 4 years ago

Config

"ban/ban": [
  "error",
  {
    "name": ["*", "removeEventListener"],
    "message": "Use xx instead"
  }
]

Expected

this.target.removeEventListener should be an error.

Current behavior

No error reported on this.target.removeEventListener

remithomas commented 4 years ago

Hey @cpylua, thanks for your report. Indeed it should throw an error, I will fix that as soon as possible.

remithomas commented 4 years ago

New version 1.4.0 published. Thanks again for the report @cpylua 👍