0.0.6 • Published 5 years ago
eslint-plugin-event-listener v0.0.6
eslint-plugin-event-listener
Check react-native memory leak by remind developer to remove any addEventListener in React-Native
This project is fork from eslint-plugin-change-listeners and modify some code
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-event-listener:
$ npm install eslint-plugin-event-listener --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-event-listener globally.
Usage
Add plugin:event-listener/recommended to the extends section of your .eslintrc configuration file.
Add event-listener to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"extends": ["plugin:event-listeners/recommended"],
"plugins": [
"event-listener"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"event-listener/remove-device-event-listener": 2
}
}