Metatron-Drive-Admin/eslint.config.js
2026-06-30 23:03:38 +05:30

28 lines
893 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', 'node_modules'] },
{
files: ['src/**/*.{js,jsx}'],
languageOptions: {
ecmaVersion: 2022,
globals: globals.browser,
parserOptions: { ecmaVersion: 'latest', ecmaFeatures: { jsx: true }, sourceType: 'module' },
},
plugins: { react, 'react-hooks': reactHooks, 'react-refresh': reactRefresh },
settings: { react: { version: 'detect' } },
rules: {
...js.configs.recommended.rules,
...react.configs.recommended.rules,
...reactHooks.configs.flat.recommended.rules,
...reactRefresh.configs.vite.rules,
'react/react-in-jsx-scope': 'off',
'react/prop-types': 'off',
},
},
]