From fde83a04f562334f2fe2878468de1fc20ede39b5 Mon Sep 17 00:00:00 2001 From: Andy Edwards Date: Wed, 28 Aug 2024 11:34:08 -0500 Subject: [PATCH] fix: ignore all node_modules and .git dirs by default --- lib/mocharc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mocharc.json b/lib/mocharc.json index 51c3fce6a0..93a16cbcfb 100644 --- a/lib/mocharc.json +++ b/lib/mocharc.json @@ -6,5 +6,5 @@ "slow": 75, "timeout": 2000, "ui": "bdd", - "watch-ignore": ["node_modules", ".git"] + "watch-ignore": ["**/node_modules", "**/.git"] }