chore: add an eslint rule to warn importing trpc package in app store package (#23665)

This commit is contained in:
Benny Joo
2025-09-08 10:36:34 +09:00
committed by GitHub
parent 92eb41c117
commit fe7fd8bc79
+12
View File
@@ -19,5 +19,17 @@ module.exports = {
],
},
},
{
files: ["packages/app-store/**/*.{ts,tsx,js,jsx}"],
rules: {
"no-restricted-imports": [
"warn",
{
paths: ["@calcom/trpc"],
patterns: ["@calcom/trpc/*"],
},
],
},
},
],
};