vian 5 лет назад
Родитель
Сommit
d1f9cb269a
1 измененных файлов с 10 добавлено и 0 удалено
  1. 10 0
      .eslintrc.js

+ 10 - 0
.eslintrc.js

@@ -24,5 +24,15 @@ module.exports = {
       },
     ],
     'import/no-unresolved': 'off',
+    '@typescript-eslint/no-empty-function': 'off',
+    '@typescript-eslint/no-explicit-any': 'off',
+    'no-unused-expressions': [
+      'error',
+      {
+        allowShortCircuit: true,
+      },
+    ],
+    'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
+    'no-restricted-syntax': 'off',
   },
 };