githubEdit

eslint-config-react-app

This package includes the shareable ESLint configuration used by Create React Apparrow-up-right. Please refer to its documentation:

Usage in Create React App Projects

The easiest way to use this configuration is with Create React Apparrow-up-right, which includes it by default.

You don’t need to install it separately in Create React App projects.

Usage Outside of Create React App

If you want to use this ESLint configuration in a project not built with Create React App, you can install it with the following steps.

First, install this package, ESLint and the necessary plugins.

npm install --save-dev eslint-config-react-app @typescript-eslint/eslint-plugin@2.x @typescript-eslint/parser@2.x babel-eslint@10.x eslint@6.x eslint-plugin-flowtype@4.x eslint-plugin-import@2.x eslint-plugin-jsx-a11y@6.x eslint-plugin-react@7.x eslint-plugin-react-hooks@2.x

Then create a file named .eslintrc.json with following contents in the root folder of your project:

{
  "extends": "react-app"
}

That's it! You can override the settings from eslint-config-react-app by editing the .eslintrc.json file. Learn more about configuring ESLintarrow-up-right on the ESLint website.

Accessibility Checks

The following rules from the eslint-plugin-jsx-a11yarrow-up-right plugin are activated:

If you want to enable even more accessibility rules, you can create an .eslintrc.json file in the root of your project with this content:

However, if you are using Create React Apparrow-up-right and have not ejected, any additional rules will only be displayed in the IDE integrationsarrow-up-right, but not in the browser or the terminal.

Last updated

Was this helpful?