19 lines
460 B
JavaScript
19 lines
460 B
JavaScript
module.exports = {
|
|
parser: '@typescript-eslint/parser',
|
|
extends: [
|
|
'plugin:@typescript-eslint/recommended',
|
|
'prettier/@typescript-eslint',
|
|
'plugin:prettier/recommended',
|
|
],
|
|
plugins: ['@typescript-eslint', 'prettier'],
|
|
env: {
|
|
node: true,
|
|
es6: true,
|
|
},
|
|
rules: {
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
'@typescript-eslint/no-namespace': 'off',
|
|
},
|
|
};
|