|
|
@@ -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',
|
|
|
},
|
|
|
};
|