From 4cb4ce2d4afeacadccde5987a1a25712edcbf8f5 Mon Sep 17 00:00:00 2001 From: "hela.ben-khalfallah" Date: Sun, 2 Jun 2024 14:44:24 +0200 Subject: [PATCH] [FIX]: code coupling exclude files --- src/kernel/coupling/CodeCouplingAuditor.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/kernel/coupling/CodeCouplingAuditor.js b/src/kernel/coupling/CodeCouplingAuditor.js index 21902ae..e645d25 100644 --- a/src/kernel/coupling/CodeCouplingAuditor.js +++ b/src/kernel/coupling/CodeCouplingAuditor.js @@ -22,7 +22,11 @@ const defaultOptions = { '.*eslint.*', '.*jest.*', '.*test.*', - '.*next.config.*', + '.*babel.*', + '.*webpack.*', + '.*.config.*', + '.*.types.*', + '.*.svg', '.*.d.ts.*', ] };