22 lines
607 B
JavaScript
22 lines
607 B
JavaScript
module.exports = {
|
|
extends: ['@eco/eslint-config'],
|
|
rules: {
|
|
'react/react-in-jsx-scope': 'off',
|
|
'unicorn/filename-case': 'off',
|
|
'@typescript-eslint/no-floating-promises': 'off',
|
|
'@typescript-eslint/no-restricted-imports': 'off',
|
|
'no-underscore-dangle': 'off',
|
|
'import/no-named-as-default': 'off',
|
|
'@eco/no-missing-localization': 'off',
|
|
'func-style': 'off',
|
|
'import/no-cycle': 'off',
|
|
},
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
ecmaVersion: 2020,
|
|
sourceType: 'module',
|
|
project: './tsconfig.json',
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
};
|