Skip to content

Commit

Permalink
Disable import/namespace rule
Browse files Browse the repository at this point in the history
Fixes #49
  • Loading branch information
sindresorhus committed Dec 31, 2021
1 parent 0d1c719 commit 9ce1d34
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,10 @@ module.exports = {
'node/no-unsupported-features/es-builtins': 'off',

// We use `@typescript-eslint/ban-types` instead.
'unicorn/no-null': 'off'
'unicorn/no-null': 'off',

// The rule is buggy with TS and it's not needed as TS already enforces valid imports and references at compile-time.
'import/namespace': 'off'
},
overrides: [
{
Expand Down

0 comments on commit 9ce1d34

Please sign in to comment.