0.7.0 • Published 1 year ago

@hai-platform/eslint-config-react v0.7.0

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

ESLint Config for React.js

Install

npm i -D @hai-platform/eslint-config-react

Usage

In .eslintrc.js:

module.exports = {
  overrides: [
    {
      files: ['*.ts', '*.tsx'],
      extends: ['@hai-platform/react'],
      parserOptions: {
        project: ['tsconfig.json'],
      },
    },
  ],
};