Ignore lint warning (#5949)

This commit is contained in:
Reuben Tier 2023-01-24 17:55:36 +00:00 committed by Matthew Phillips
parent b221969e61
commit 33fd1c9766

View file

@ -63,6 +63,7 @@ const rssOptionsValidator = z.object({
.or(globResultValidator)
.transform((items) => {
if (!Array.isArray(items)) {
// eslint-disable-next-line
console.warn(
yellow(
'[RSS] Passing a glob result directly has been deprecated. Please migrate to the `pagesGlobToRssItems()` helper: https://docs.astro.build/en/guides/rss/'