diff --git a/.ts-eslintrc.js b/.ts-eslintrc.js index 6b81ad99..43392aef 100644 --- a/.ts-eslintrc.js +++ b/.ts-eslintrc.js @@ -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: {} };