2020-04-07 19:30:48 +03:00
|
|
|
module.exports = {
|
|
|
|
ignorePatterns: ['**/*.d.ts', '**/*.test.ts', '**/*.js'],
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
extends: ['plugin:@typescript-eslint/recommended'],
|
|
|
|
parserOptions: {
|
|
|
|
ecmaVersion: 2018,
|
|
|
|
sourceType: 'module',
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
'@typescript-eslint/no-use-before-define': 'off',
|
|
|
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
2021-01-22 10:12:10 +03:00
|
|
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
|
|
'@typescript-eslint/no-var-requires': 'off',
|
2020-04-07 19:30:48 +03:00
|
|
|
},
|
|
|
|
};
|