mirror of
https://github.com/CarlGao4/um-react-electron.git
synced 2024-11-23 23:12:15 +00:00
28 lines
673 B
JavaScript
28 lines
673 B
JavaScript
|
/* eslint-env node */
|
||
|
|
||
|
module.exports = {
|
||
|
root: true,
|
||
|
env: { browser: true, es2020: true },
|
||
|
extends: [
|
||
|
'eslint:recommended',
|
||
|
'plugin:@typescript-eslint/recommended',
|
||
|
'plugin:react-hooks/recommended',
|
||
|
'prettier',
|
||
|
],
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
|
||
|
plugins: ['react-refresh'],
|
||
|
rules: {
|
||
|
'react-refresh/only-export-components': 'warn',
|
||
|
'@typescript-eslint/no-unused-vars': [
|
||
|
'error',
|
||
|
{
|
||
|
varsIgnorePattern: '^_',
|
||
|
argsIgnorePattern: '^_',
|
||
|
destructuredArrayIgnorePattern: '^_',
|
||
|
ignoreRestSiblings: true,
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
};
|