40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
import js from '@eslint/js';
|
|
import react from 'eslint-plugin-react';
|
|
import reactHooks from 'eslint-plugin-react-hooks';
|
|
import reactRefresh from 'eslint-plugin-react-refresh';
|
|
|
|
export default [
|
|
{
|
|
ignores: ['dist', '.eslintrc.cjs'],
|
|
},
|
|
js.configs.recommended,
|
|
{
|
|
plugins: {
|
|
'react': react.configs.flat.recommended,
|
|
'react-hooks': reactHooks.configs.flat.recommended,
|
|
'react-refresh': reactRefresh.configs.flat.recommended,
|
|
},
|
|
languageOptions: {
|
|
ecmaVersion: 2020,
|
|
globals: {
|
|
...globals.browser,
|
|
...globals.node,
|
|
...globals.es2021,
|
|
},
|
|
},
|
|
settings: { react: { version: 'detect' } },
|
|
rules: {
|
|
...react.configs.flat.recommended.rules,
|
|
...reactHooks.configs.flat.recommended.rules,
|
|
...reactRefresh.configs.flat.recommended.rules,
|
|
'react/jsx-no-target-blank': 'off',
|
|
'react-refresh/only-export-components': [
|
|
'warn',
|
|
{ allowConstantExport: true },
|
|
],
|
|
'react/react-in-jsx-scope': 'off',
|
|
'no-console': ['warn', { allow: ['warn', 'error'] }],
|
|
},
|
|
},
|
|
];
|