File size: 1,015 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
import { defineRule } from '../utils/define-rule'
import * as path from 'path'
const url = 'https://nextjs.org/docs/messages/no-document-import-in-page'
export = defineRule({
meta: {
docs: {
description:
'Prevent importing `next/document` outside of `pages/_document.js`.',
recommended: true,
url,
},
type: 'problem',
schema: [],
},
create(context) {
return {
ImportDeclaration(node) {
if (node.source.value !== 'next/document') {
return
}
const paths = context.filename.split('pages')
const page = paths[paths.length - 1]
if (
!page ||
page.startsWith(`${path.sep}_document`) ||
page.startsWith(`${path.posix.sep}_document`)
) {
return
}
context.report({
node,
message: `\`<Document />\` from \`next/document\` should not be imported outside of \`pages/_document.js\`. See: ${url}`,
})
},
}
},
})
|