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 18, 2024
1 parent eef4510 commit bb9cd67
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 bb9cd67

Please sign in to comment.