eslint-config-react-app-new
v2.0.9
Published
ESLint configuration used by tiger-new
Downloads
1,013
Readme
eslint-config-react-app-new
Requirements
Node.js >= 18.20.0ESLint >= 9.0.0
Usage
// eslint.config.js
const { defineConfig } = require('eslint/config');
const reactAppConfig = require('eslint-config-react-app-new');
module.exports = defineConfig({
extends: [reactAppConfig],
// Optional: other custom rules can be added here
rules: {
// example: override a rule
'no-console': 'warn'
}
});