Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.65 KB

README.md

File metadata and controls

49 lines (34 loc) · 1.65 KB

@pilaton/eslint-config-react

npm

ESLint configuration including all necessary plugins for testing React project code.

Note

Package from the eslint-eco monorepository.
I recommend reading the documentation to understand the whole picture.

Included in the package

  1. eslint-plugin-react
  2. eslint-plugin-react-hooks
  3. eslint-plugin-react-refresh
  4. eslint-plugin-jsx-a11y
  5. eslint-plugin-tailwindcss

Install

npm i @pilaton/eslint-config-react --save-dev

I recommend using this config over the @pilaton/eslint-config-base base config:

npm i @pilaton/eslint-config-base @pilaton/eslint-config-react --save-dev

Usage

This configuration is created for the new ESLint Flat Config, and only supports ESM!

eslint.config.js (eslint>=v8.23.1)

import base from '@pilaton/eslint-config-base';
import react from '@pilaton/eslint-config-react';

export default [
  ...base,
  ...react

  {
    // Your config
  },
];