# eslint-plugin-change-listeners

> eslint-plugin-change-listeners

Latest version **0.0.3** (published 2017-09-03) · ISC license · 0 weekly downloads

## Install

```sh
npm install eslint-plugin-change-listeners
pnpm add eslint-plugin-change-listeners
yarn add eslint-plugin-change-listeners
bun add eslint-plugin-change-listeners
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2017-09-03 |
| First published | 2017-09-03 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=4.0.0 |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Petr Brzek |
| Maintainers | petrbrzek |
| Keywords | eslint, eslintplugin, eslint-plugin |

## Links

- npm: https://www.npmjs.com/package/eslint-plugin-change-listeners
- npm.io page: https://npm.io/package/eslint-plugin-change-listeners

## Alternatives

- [eslint-plugin-sonarjs](https://npm.io/package/eslint-plugin-sonarjs.md) — 2.9M weekly downloads
- [eslint-config-expo](https://npm.io/package/eslint-config-expo.md) — 1.5M weekly downloads
- [@matter/protocol](https://npm.io/package/@matter/protocol.md) — 63.5K weekly downloads
- [@eventcatalog/linter](https://npm.io/package/@eventcatalog/linter.md) — 24.8K weekly downloads
- [@inrupt/eslint-config-base](https://npm.io/package/@inrupt/eslint-config-base.md) — 4.5K weekly downloads

## Recent versions

- 0.0.3 (latest) — 2017-09-03

## README

# eslint-plugin-change-listeners

It reports several things:

- When you forget to call removeChangeListener
- When you forget to remove removeChangeListener
- When you call different callback in (add/remove)ChangeListener
- When you do not use class method for the callback

## Installation

You'll first need to install [ESLint](http://eslint.org):

```
$ npm i eslint --save-dev
```

Next, install `eslint-plugin-change-listeners`:

```
$ npm install eslint-plugin-change-listeners --save-dev
```

**Note:** If you installed ESLint globally (using the `-g` flag) then you must also install `eslint-plugin-change-listeners` globally.

## Usage

Add `change-listeners` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:

```json
{
    "plugins": [
        "change-listeners"
    ]
}
```

---
_Source: https://npm.io/package/eslint-plugin-change-listeners · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
