Skip to content

codepunkt/eslint-config-react

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@codepunkt/eslint-config-react

This package includes a fork of the shareable ESLint configuration used by Create React App.

Install

yarn add -D eslint @codepunkt/eslint-config-react

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

module.exports = {
  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 ESLint on the ESLint website.

Accessibility Checks

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

module.exports = {
  extends: ["react-app", "plugin:jsx-a11y/recommended"],
  plugins: ["jsx-a11y"],
};

About

opinionated ESLint configuration based on create-react-app that installs with all required dependencies

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published