.eslintrc.cjs (415B)
1 module.exports = { 2 env: { browser: true, es2020: true }, 3 extends: [ 4 'eslint:recommended', 5 'plugin:react/recommended', 6 'plugin:react/jsx-runtime', 7 'plugin:react-hooks/recommended', 8 ], 9 parserOptions: { ecmaVersion: 'latest', sourceType: 'module' }, 10 settings: { react: { version: '18.2' } }, 11 plugins: ['react-refresh'], 12 rules: { 13 'react-refresh/only-export-components': 'warn', 14 }, 15 }