Skip to content

Commit

Permalink
Fix linting type import/exports
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Oct 18, 2024
1 parent f13803d commit 22ed4ae
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ts.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ export default [
'dot-notation': 'off',

'func-callspacing': 'off',
'import/extensions': ['error', 'always', { ignorePackages: true }],
'import/extensions': [
'error',
'always',
{ checkTypeImports: true, ignorePackages: true }
],
'lines-between-class-members': 'off',
'no-dupe-class-members': 'off',
'no-invalid-this': 'off',
Expand Down

0 comments on commit 22ed4ae

Please sign in to comment.