cal/packages/embeds/.eslintrc.js
Hariom Balhara 1456e2d4d5
feat: Embed - Introduce `prerender` instruction - Lightning fast popup experience (#11303)
Co-authored-by: Peer Richelsen <peeroke@gmail.com>
Co-authored-by: Omar López <zomars@me.com>
2023-10-10 03:10:04 +00:00

14 lines
398 B
JavaScript

/** @type {import("eslint").Linter.Config} */
module.exports = {
extends: ["../../.eslintrc.js"],
rules: {
"no-restricted-imports": [
"error",
{
// Ensure that embed packages(They are published) can't access unpublished packages which is basically all @calcom/* packages except embed packages
patterns: ["@calcom/*", "!@calcom/embed-*"],
},
],
},
};