const url = 'https://nextjs.org/docs/messages/no-title-in-document-head'
module.exports = {
meta: {
docs: {
description:
'Prevent usage of `
` with `Head` component from `next/document`.',
recommended: true,
url,
},
type: 'problem',
schema: [],
},
create: function (context) {
let headFromNextDocument = false
return {
ImportDeclaration(node) {
if (node.source.value === 'next/document') {
if (node.specifiers.some(({ local }) => local.name === 'Head')) {
headFromNextDocument = true
}
}
},
JSXElement(node) {
if (!headFromNextDocument) {
return
}
if (
node.openingElement &&
node.openingElement.name &&
node.openingElement.name.name !== 'Head'
) {
return
}
const titleTag = node.children.find(
(child) =>
child.openingElement &&
child.openingElement.name &&
child.openingElement.name.type === 'JSXIdentifier' &&
child.openingElement.name.name === 'title'
)
if (titleTag) {
context.report({
node: titleTag,
message: `Do not use \`\` element with \`\` component from \`next/document\`. Titles should defined at the page-level using \`\` from \`next/head\` instead. See: ${url}`,
})
}
},
}
},
}