Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
evgenyneu committed Aug 1, 2024
1 parent 02c9f37 commit e4ecdd4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ module.exports = {
},
{
// Apply to all test files. Proper type checking in tests with mocks can be tedious and counterproductive.
files: ['**/*.test.ts', '**/*.spec.ts'],
files: ["**/*.test.ts", "**/*.spec.ts"],
rules: {
'@typescript-eslint/no-explicit-any': 'off'
}
}
"@typescript-eslint/no-explicit-any": "off",
},
},
],
env: {
browser: true,
Expand Down

0 comments on commit e4ecdd4

Please sign in to comment.