diff --git a/.eslintrc.js b/.eslintrc.js index 926caf7162..1d9c2bb462 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -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/*"], + }, + ], + }, + }, + ], };