From 15bb9aa137df6b2b1106bc77d8e32bf6268cc099 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Sun, 3 May 2020 07:31:46 -0700 Subject: [PATCH] Disable eslint in all js files This was causing distracting editor diagnostics --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 2f39fada..f234e93c 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -25,7 +25,8 @@ }, "ignorePatterns": [ "**/typings/*.d.ts", - "**/node_modules" + "**/node_modules", + "**/*.js" ], "plugins": [ "@typescript-eslint"