@devinilabs/reelstack 1.2.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +0,0 @@
1
- /** Fonts banned by leonxlnx/taste-skill — generic AI defaults that signal lack of taste.
2
- * Used by `reelstack lint` to flag any fontFamily containing one of these.
3
- * Allowed in ReelStack: Geist, Geist Mono, system-ui (fallback). Editorial-serif options
4
- * per Cream Paper / Warm Signature variant overlays: Lyon Text, Newsreader, Playfair Display.
5
- */
6
- export const BANNED_FONTS = [
7
- "Inter", "Roboto", "Helvetica", "Arial", "Open Sans", "Lato", "Source Sans Pro",
8
- "Nunito", "Poppins", "Montserrat", "Raleway", "PT Sans", "Ubuntu",
9
- ] as const;
10
- export const isBannedFont = (fontFamily: string): boolean =>
11
- BANNED_FONTS.some((b) => fontFamily.toLowerCase().includes(b.toLowerCase()));