eslint-plugin-jsx-plus

0.1.0 • Public • Published

eslint-plugin-jsx-plus

eslint plugin for jsx plus

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-jsx-plus:

$ npm install eslint-plugin-jsx-plus --save-dev

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

Usage

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

{
    "extends": [
        "react-app",
        "plugin:jsx-plus/recommended"
    ],
    "plugins": [
        "jsx-plus"
    ]
}

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

{
    "rules": {
        "jsx-plus/valid-x-for": 2
    }
}

Supported Rules

  • jsx-plus/no-duplicate-directives
  • jsx-plus/valid-x-class
  • jsx-plus/valid-x-memo
  • jsx-plus/valid-x-for
  • jsx-plus/valid-x-slot
  • jsx-plus/no-duplicate-declaration-for-x-slot
  • jsx-plus/forbid-use-x-elseif-alone
  • jsx-plus/forbid-use-x-else-alone
  • jsx-plus/forbid-assignment-to-x-else

Package Sidebar

Install

npm i eslint-plugin-jsx-plus

Weekly Downloads

425

Version

0.1.0

License

MIT

Unpacked Size

48.6 kB

Total Files

34

Last publish

Collaborators

  • later_7
  • zeroling