From 3fb085e45fa7101abaf3951d0bf7a34567fdabe4 Mon Sep 17 00:00:00 2001 From: Constantin Bergatt Date: Wed, 15 Jan 2025 09:57:12 +0100 Subject: [PATCH] BC-8373 - fix linter rule --- .eslintrc.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 7b13064dd6..273877be5f 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -158,9 +158,8 @@ module.exports = { { patterns: [ { - group: ['@apps/**', '@infra/**', '@modules', '@shared/**'], + group: ['@apps/**', '@infra/**', '@modules/**/*.ts', '@shared/**', '!@modules/**/*.app.module.ts'], message: 'apps-modules may NOT import from @apps, @infra, @modules or @shared', - allow: ['@modules/**/*.app.module.ts'], }, ], },