eslint-plugin-react-ext

0.1.0 • Public • Published

eslint-plugin-react-ext

The missing rules for eslint-react-plugin.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-react and eslint-plugin-react-ext:

$ npm install eslint-plugin-react eslint-plugin-react-ext --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-react and eslint-plugin-react-ext globally.

Usage

Add eslint-plugin-react-ext to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "react-ext"
    ]
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "react-ext/no-unused-react-member": 2
    }
}

Supported Rules

  • no-unused-react-member Prevent declaring unused methods of component class

/eslint-plugin-react-ext/

    Package Sidebar

    Install

    npm i eslint-plugin-react-ext

    Weekly Downloads

    436

    Version

    0.1.0

    License

    ISC

    Unpacked Size

    7.6 kB

    Total Files

    4

    Last publish

    Collaborators

    • meowtec