Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Jul 23, 2024
1 parent d2eba07 commit 91e3380
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,16 @@ module.exports = {
},
},
{
files: ['test-packages/**/*.[jt]s', 'tests/scenarios/**/*.{js,ts}'],
files: ['test-packages/**/*.[jt]s'],
rules: {
'import/no-extraneous-dependencies': 'off',
},
},
{
files: ['tests/scenarios/**/*.ts'],
parserOptions: {
project: './tests/scenarios/tsconfig.json',
},
rules: {
'import/no-extraneous-dependencies': 'off',
},
Expand Down

0 comments on commit 91e3380

Please sign in to comment.