Pattern: Use of deprecated getEntryBySlug()
Issue: -
Disallow using deprecated getEntryBySlug()
.
---
/* eslint astro/no-deprecated-getentrybyslug: "error" */
/* ✓ GOOD */
import { getEntry } from "astro:content";
/* ✗ BAD */
import { getEntryBySlug } from "astro:content";
---