13 lines
308 B
JavaScript
13 lines
308 B
JavaScript
|
|
module.exports = {
|
||
|
|
root: true,
|
||
|
|
env: { browser: true, es2020: true },
|
||
|
|
extends: [
|
||
|
|
'eslint:recommended',
|
||
|
|
'plugin:@typescript-eslint/recommended',
|
||
|
|
'plugin:react-hooks/recommended',
|
||
|
|
],
|
||
|
|
ignorePatterns: ['.eslintrc.cjs'],
|
||
|
|
parser: '@typescript-eslint/parser',
|
||
|
|
plugins: ['react-refresh'],
|
||
|
|
}
|