Files
2025-11-25 09:43:22 +03:00

29 lines
918 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',
'react/destructuring-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'sonarjs/no-identical-functions': 'off',
'jsdoc/check-indentation': 'off',
'prettier/prettier': ['error', { endOfLine: 'auto' }],
},
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
ignorePatterns: ['.eslintrc.js'],
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
project: './tsconfig.base.json',
tsconfigRootDir: __dirname,
},
};