From 299f2cad583cce07e6ba56893ef9c75670391cb5 Mon Sep 17 00:00:00 2001 From: Georgii Dolzhykov Date: Mon, 20 Apr 2020 20:06:37 +0300 Subject: [PATCH] chore: ignore test*.js in eslint and ts configs --- .eslintignore | 2 +- tsconfig.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintignore b/.eslintignore index 69933d2d199f..a1aa75db9b1f 100644 --- a/.eslintignore +++ b/.eslintignore @@ -2,7 +2,7 @@ /tests/**/*.js !/tests/**/jsfmt.spec.js !/**/.eslintrc.js -/test.js +/test*.js /scripts/build/shims /scripts/release/node_modules /coverage/ diff --git a/tsconfig.json b/tsconfig.json index 15feff23bd0b..5a1d98d1488d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,6 +11,7 @@ }, "exclude": [ "coverage/", + "test*.js", // [TBD] JavaScript sources *not* affected by src/language-*: "src/main/ast-to-doc.js", "src/main/core.js",