Skip to content

Commit

Permalink
fix: lint issues and improve error handling (#2825)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Sep 22, 2023
1 parent fdc73d4 commit dfa5889
Show file tree
Hide file tree
Showing 22 changed files with 679 additions and 127 deletions.
7 changes: 4 additions & 3 deletions .eslintrc.js
Expand Up @@ -116,12 +116,13 @@ const config = {
},
},
{
files: ['vitest.config.*', '**/jest.config.js', '**/*.test.*', '**/build.*'],
files: ['vitest.config.*', '**/jest.config.js', '**/*.test.*', '**/build.*', '**/test/**'],
rules: {
'node/no-extraneous-import': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'import/no-unresolved': 'off',
'node/no-unpublished-require': 'off',
'node/no-extraneous-import': 'off',
'node/no-unpublished-import': 'off',
'node/no-unpublished-require': 'off',
},
},
{
Expand Down

0 comments on commit dfa5889

Please sign in to comment.