37 lines
959 B
JavaScript
37 lines
959 B
JavaScript
|
|
import js from '@eslint/js'
|
||
|
|
import globals from 'globals'
|
||
|
|
import react from 'eslint-plugin-react'
|
||
|
|
import reactHooks from 'eslint-plugin-react-hooks'
|
||
|
|
import reactRefresh from 'eslint-plugin-react-refresh'
|
||
|
|
|
||
|
|
export default [
|
||
|
|
{ ignores: ['dist'] },
|
||
|
|
{
|
||
|
|
files: ['**/*.{js,jsx}'],
|
||
|
|
languageOptions: {
|
||
|
|
ecmaVersion: 2020,
|
||
|
|
globals: globals.browser,
|
||
|
|
parserOptions: { ecmaFeatures: { jsx: true } },
|
||
|
|
},
|
||
|
|
plugins: {
|
||
|
|
react,
|
||
|
|
'react-hooks': reactHooks,
|
||
|
|
'react-refresh': reactRefresh,
|
||
|
|
},
|
||
|
|
settings: {
|
||
|
|
react: { version: 'detect' },
|
||
|
|
},
|
||
|
|
rules: {
|
||
|
|
...js.configs.recommended.rules,
|
||
|
|
...react.configs.recommended.rules,
|
||
|
|
...reactHooks.configs.recommended.rules,
|
||
|
|
'react/react-in-jsx-scope': 'off',
|
||
|
|
'react/prop-types': 'off',
|
||
|
|
'react-refresh/only-export-components': [
|
||
|
|
'warn',
|
||
|
|
{ allowConstantExport: true, allowExportNames: ['useBooks'] },
|
||
|
|
],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
]
|