Skip to content

Commit

Permalink
fix: disable some unnecessary rules
Browse files Browse the repository at this point in the history
  • Loading branch information
noahnu committed May 31, 2024
1 parent ed5898c commit a74f674
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .monoweave/cedd54e3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
"@noahnu/eslint-config": patch
---
Disable no-named-as-default and no-named-as-default-member.
2 changes: 2 additions & 0 deletions packages/eslint-config/src/base/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ const rules: ESLint.ConfigData['rules'] = {
'import-x/no-self-import': 'error',
'import-x/no-useless-path-segments': 'error',
'import-x/no-unresolved': 'error',
'import-x/no-named-as-default': 'off',
'import-x/no-named-as-default-member': 'off',
'import-x/order': [
'error',
{
Expand Down

0 comments on commit a74f674

Please sign in to comment.