19 lines
No EOL
513 B
JavaScript
19 lines
No EOL
513 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: [
|
|
'@typescript-eslint'
|
|
],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/eslint-recommended',
|
|
'plugin:@typescript-eslint/recommended'
|
|
],
|
|
rules: {
|
|
'@typescript-eslint/explicit-function-return-type': 0,
|
|
'@typescript-eslint/ban-ts-ignore': 0,
|
|
'@typescript-eslint/no-namespace': { 'allowDeclarations': true },
|
|
'@typescript-eslint/member-delimiter-style': 0,
|
|
'@typescript-eslint/no-explicit-any': 0
|
|
}
|
|
} |