Files
old-kitabcitab-frontend/kitabcitab/node_modules/@next/eslint-plugin-next/dist/rules/no-head-element.js
2022-12-27 12:05:56 +01:00

35 lines
1.3 KiB
JavaScript

"use strict";
var _defineRule = require("../utils/define-rule");
var path = require("path");
var url = "https://nextjs.org/docs/messages/no-head-element";
module.exports = (0, _defineRule).defineRule({
meta: {
docs: {
description: "Prevent usage of `<head>` element.",
category: "HTML",
recommended: true,
url: url
},
type: "problem",
schema: []
},
create: function create(context) {
return {
JSXOpeningElement: function JSXOpeningElement(node) {
var paths = context.getFilename();
var isInAppDir = function() {
return (paths.includes("app".concat(path.sep)) || paths.includes("app".concat(path.posix.sep))) && !paths.includes("pages".concat(path.sep)) && !paths.includes("pages".concat(path.posix.sep));
};
// Only lint the <head> element in pages directory
if (node.name.name !== "head" || isInAppDir()) {
return;
}
context.report({
node: node,
message: "Do not use `<head>` element. Use `<Head />` from `next/head` instead. See: ".concat(url)
});
}
};
}
});