30 lines
800 B
JavaScript
30 lines
800 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
env: { browser: true, es2020: true },
|
||
|
extends: [
|
||
|
'eslint:recommended',
|
||
|
'plugin:@typescript-eslint/recommended-type-checked',
|
||
|
'plugin:@typescript-eslint/stylistic-type-checked',
|
||
|
'plugin:react-hooks/recommended',
|
||
|
'plugin:react/recommended',
|
||
|
'plugin:react/jsx-runtime',
|
||
|
],
|
||
|
ignorePatterns: ['dist', '.eslintrc.cjs', 'vite.config.ts'],
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 'latest',
|
||
|
sourceType: 'module',
|
||
|
project: ['./tsconfig.json', './tsconfig.node.json'],
|
||
|
tsconfigRootDir: __dirname,
|
||
|
},
|
||
|
plugins: ['react-refresh'],
|
||
|
rules: {
|
||
|
'react-refresh/only-export-components': ['warn', { allowConstantExport: true }],
|
||
|
},
|
||
|
settings: {
|
||
|
react: {
|
||
|
version: 'detect',
|
||
|
},
|
||
|
},
|
||
|
};
|