From 7b0c5f58c70fb26a823a0918a1276c35b91318a8 Mon Sep 17 00:00:00 2001 From: Christopher Hiller Date: Mon, 11 Mar 2024 15:54:48 -0700 Subject: [PATCH] chore(eslint): prevent n/no-extraneous-* from touching test files with .ts extensions --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index a7b20048d9..7431172f95 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -108,7 +108,7 @@ module.exports = { }, overrides: [ { - files: ['**/*/*/test/**/*.js'], + files: ['**/*/*/test/**/*.js', '**/*/*/test/**/*.ts'], extends: ['plugin:ava/recommended'], env: { browser: true,