Skip to content

Commit

Permalink
chore(eslint): prevent n/no-extraneous-* from touching test files wit…
Browse files Browse the repository at this point in the history
…h .ts extensions
  • Loading branch information
boneskull committed Mar 27, 2024
1 parent ff08150 commit bd55e73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Expand Up @@ -108,7 +108,7 @@ module.exports = {
},
overrides: [
{
files: ['**/*/*/test/**/*.js'],
files: ['**/*/*/test/**/*.js', '**/*/*/test/**/*.ts'],
extends: ['plugin:ava/recommended'],
env: {
browser: true,
Expand Down

0 comments on commit bd55e73

Please sign in to comment.