From 5aa77c9db19133c7d01972561c76f4f20ba8d7bf Mon Sep 17 00:00:00 2001 From: Haileyesus Date: Wed, 15 Apr 2026 14:22:16 +0300 Subject: [PATCH] fix(eslint): update shared types pattern --- eslint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint.config.js b/eslint.config.js index b638ff37..3ef25d92 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -149,7 +149,7 @@ export default tseslint.config( "boundaries/elements": [ { type: "backend-shared-types", // shared backend type contract that modules may consume without creating runtime coupling - pattern: ["server/shared/types.{js,ts}", "server/types.{js,ts}"], // support the current shared types path and the older top-level server/types file + pattern: ["server/shared/types.{js,ts}"], // support the current shared types path mode: "file", // treat the types file itself as the boundary element instead of the whole folder }, {