don't use any non-ts eslint rules, they don't understand abstract method
This commit is contained in:
parent
8fa6f4f9fd
commit
e2cdadc714
1 changed files with 3 additions and 11 deletions
|
@ -5,9 +5,8 @@ module.exports = {
|
|||
"es6": true
|
||||
},
|
||||
extends: [
|
||||
"eslint:recommended"
|
||||
// "plugin:@typescript-eslint/recommended",
|
||||
// "plugin:@typescript-eslint/recommended-requiring-type-checking",
|
||||
"plugin:@typescript-eslint/recommended",
|
||||
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
||||
],
|
||||
parser: '@typescript-eslint/parser',
|
||||
parserOptions: {
|
||||
|
@ -18,12 +17,5 @@ module.exports = {
|
|||
plugins: [
|
||||
'@typescript-eslint',
|
||||
],
|
||||
rules: {
|
||||
"no-console": "off",
|
||||
"no-empty": "off",
|
||||
"no-prototype-builtins": "off",
|
||||
"no-unused-vars": "warn",
|
||||
"@typescript-eslint/no-floating-promises": 2,
|
||||
"@typescript-eslint/no-misused-promises": 2
|
||||
}
|
||||
rules: {}
|
||||
};
|
||||
|
|
Reference in a new issue