@isfawwaz/eslint-config-react-a11y
v1.0.0-rc.1
Published
Fawwaz's ESLint configuration for project that use React
Downloads
2
Maintainers
Readme
@isfawwaz/eslint-config-react
Shared ESLint configuration for projects that use React.
Installation
npm install --save-dev @isfawwaz/eslint-config-react-a11y
# or
pnpm add -D @isfawwaz/eslint-config-react-a11y
# or
yarn add -D @isfawwaz/eslint-config-react-a11y
Usage
Create a .eslintrc.json
file in the project root and extend @isfawwaz/eslint-config-react
.
This package should be used in conjunction with @isfawwaz/eslint-config-base
and @isfawwaz/eslint-config-react
.
Example
{
"root": true,
"env": {
"browser": true
},
"extends": [
"@isfawwaz/eslint-config-base/esm",
"@isfawwaz/eslint-config-react",
"@isfawwaz/eslint-config-react-a11y"
]
}