2022-11-20 14:16:17 +03:00
|
|
|
module.exports = {
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
parserOptions: {
|
2023-07-23 15:28:11 +03:00
|
|
|
// project: 'tsconfig.json',
|
|
|
|
// sourceType: 'module',
|
2022-11-20 14:16:17 +03:00
|
|
|
},
|
|
|
|
plugins: ['@typescript-eslint/eslint-plugin'],
|
|
|
|
extends: [
|
|
|
|
'plugin:@typescript-eslint/recommended',
|
|
|
|
'plugin:prettier/recommended',
|
|
|
|
],
|
|
|
|
root: true,
|
|
|
|
env: {
|
|
|
|
node: true,
|
|
|
|
jest: true,
|
|
|
|
},
|
|
|
|
ignorePatterns: ['.eslintrc.js'],
|
|
|
|
rules: {
|
|
|
|
'@typescript-eslint/interface-name-prefix': 'off',
|
|
|
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
|
|
'@typescript-eslint/no-use-before-define': 'off',
|
|
|
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
|
|
'@typescript-eslint/ban-types': 'off',
|
|
|
|
},
|
|
|
|
};
|