1.1.0 • Published 7 years ago

eslint-plugin-idiomatic-jsx v1.1.0

Weekly downloads
86
License
MIT
Repository
github
Last release
7 years ago

eslint-plugin-idiomatic-jsx

These rules allow you to create idiomatic styling over JSX in your projects. For instance, enforcing or preventing certain attributes on JSX elements. The goal is to extend the rule sets provided by eslint-plugin-react and eslint-plugin-jsx-a11y to give you more control over how JSX is used.

Some Possible Use Cases

  • Require id tags on components like a and input for easier automated tests
  • Prevent onClick being used on div or span components
  • Prevent use of button components in favor of a custom Button components

Installation

You'll first need to install ESLint:

# npm
npm install eslint --save-dev

# yarn
yarn add eslint --dev

Next, install eslint-plugin-idiomatic-jsx:

# npm
npm install eslint-plugin-idiomatic-jsx --save-dev

# yarn
yarn add eslint-plugin-idiomatic-jsx --dev

Note: If you installed ESLint globally then you must also install eslint-plugin-idiomatic-jsx globally.

Configuration

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

{
  "plugins": [
    "idiomatic-jsx"
  ]
}

Configure the rules you want to use under the rules section.

{
  "rules": {
    "idiomatic-jsx/rule-name": [ 2, {
      // options
    } ]
  }
}

List of Supported Rules

License

eslint-plugin-idiomatic-jsx is licensed under the MIT License.