chore: add eslint rules to avoid importing from app-store (#23518)

This commit is contained in:
Volnei Munhoz
2025-09-02 15:24:09 +00:00
committed by GitHub
parent a1fab0e744
commit 3b7d97b194
+14
View File
@@ -2,4 +2,18 @@
/** @type {import("eslint").Linter.Config} */
module.exports = {
extends: ["./packages/config/eslint-preset.js"],
overrides: [
{
files: ["packages/lib/**/*.{ts,tsx,js,jsx}", "packages/prisma/**/*.{ts,tsx,js,jsx}"],
rules: {
"no-restricted-imports": [
"warn",
{
paths: ["@calcom/app-store"],
patterns: ["@calcom/app-store/*"],
},
],
},
},
],
};