Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 837 Bytes

File metadata and controls

51 lines (31 loc) · 837 Bytes

eslint-plugin-jsx-a11y

A static analysis linter of React components and their accessibility with screen readers.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-jsx-a11y:

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

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

Usage

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

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

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

{
    "rules": {
        "jsx-a11y/rule-name": 2
    }
}

Supported Rules

  • Fill in provided rules here