2020-08-12 04:13:14 +02:00
|
|
|
module.exports = {
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
extends: [
|
|
|
|
'plugin:react/recommended',
|
|
|
|
'plugin:@typescript-eslint/recommended',
|
|
|
|
'prettier/@typescript-eslint',
|
|
|
|
'plugin:prettier/recommended',
|
|
|
|
'plugin:react-hooks/recommended',
|
|
|
|
],
|
|
|
|
parserOptions: {
|
2020-08-17 19:21:14 +02:00
|
|
|
ecmaVersion: 2020,
|
2020-08-12 04:13:14 +02:00
|
|
|
sourceType: 'module',
|
|
|
|
ecmaFeatures: {
|
|
|
|
jsx: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_|^req|^next' }],
|
|
|
|
'@typescript-eslint/no-explicit-any': 0,
|
|
|
|
'@typescript-eslint/explicit-function-return-type': 0,
|
|
|
|
'react/prop-types': 0,
|
|
|
|
},
|
|
|
|
settings: {
|
|
|
|
react: {
|
|
|
|
version: 'detect',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|