ESLint configuration used by tiger-new
npm install eslint-config-react-app-new- Node.js >= 18.20.0
- ESLint >= 9.0.0
``js
// 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'
}
});
``