diff --git a/packages/basic/index.js b/packages/basic/index.js index 851ab23..346837d 100644 --- a/packages/basic/index.js +++ b/packages/basic/index.js @@ -288,6 +288,8 @@ module.exports = { 'no-use-before-define': ['error', { functions: false, classes: false, variables: true }], 'eslint-comments/disable-enable-pair': 'off', 'import/no-named-as-default-member': 'off', + 'import/no-named-as-default': 'off', + 'import/namespace': 'off', 'n/no-callback-literal': 'off', 'sort-imports': [ diff --git a/packages/typescript/index.js b/packages/typescript/index.js index 7279ec5..aa76739 100644 --- a/packages/typescript/index.js +++ b/packages/typescript/index.js @@ -126,5 +126,6 @@ module.exports = { '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/ban-types': 'off', '@typescript-eslint/no-namespace': 'off', + '@typescript-eslint/triple-slash-reference': 'off', }, }