Skip to content

Commit

Permalink
fix: remove duplicate import checks, already checked by typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalLuginbuehl committed Oct 19, 2023
1 parent 4aa44bf commit 74f7de9
Showing 1 changed file with 7 additions and 16 deletions.
23 changes: 7 additions & 16 deletions typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,13 @@ module.exports = {
'no-shadow': 'off',
'@typescript-eslint/no-shadow': 'error',

'import/no-unused-modules': 'off',
'import/named': 'off',
'import/namespace': 'off',
'import/default': 'off',

'import/newline-after-import': 'error',

'import/order': [
'error',
{
Expand All @@ -78,21 +85,6 @@ module.exports = {
group: 'builtin',
position: 'before',
},
{
pattern: '{jest-axe,enzyme,react-dom/test-utils}',
group: 'builtin',
position: 'after',
},
{
pattern: '*storybook*',
group: 'builtin',
position: 'after',
},
{
pattern: '{@competec/**,b2c-components/**,b2c-resources/**}',
group: 'external',
position: 'after',
},
],
pathGroupsExcludedImportTypes: [],
groups: [
Expand All @@ -105,7 +97,6 @@ module.exports = {
],
},
],
'import/newline-after-import': 'error',
},
},
],
Expand Down

0 comments on commit 74f7de9

Please sign in to comment.