36 lines
822 B
JavaScript
36 lines
822 B
JavaScript
|
import js from '@eslint/js'
|
||
|
import globals from 'globals'
|
||
|
import reactHooks from 'eslint-plugin-react-hooks'
|
||
|
import reactRefresh from 'eslint-plugin-react-refresh'
|
||
|
|
||
|
export default [
|
||
|
js.configs.recommended,
|
||
|
{
|
||
|
files: ['**/*.{js,jsx,ts,tsx}'],
|
||
|
languageOptions: {
|
||
|
globals: {
|
||
|
...globals.browser,
|
||
|
...globals.es2020,
|
||
|
},
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 'latest',
|
||
|
sourceType: 'module',
|
||
|
ecmaFeatures: {
|
||
|
jsx: true,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: {
|
||
|
'react-hooks': reactHooks,
|
||
|
'react-refresh': reactRefresh,
|
||
|
},
|
||
|
rules: {
|
||
|
...reactHooks.configs.recommended.rules,
|
||
|
'react-refresh/only-export-components': [
|
||
|
'warn',
|
||
|
{ allowConstantExport: true },
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
]
|