create project
This commit is contained in:
34
kitabcitab/node_modules/@next/eslint-plugin-next/dist/rules/no-head-element.js
generated
vendored
Normal file
34
kitabcitab/node_modules/@next/eslint-plugin-next/dist/rules/no-head-element.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
"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)
|
||||
});
|
||||
}
|
||||
};
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user