create project
This commit is contained in:
76
kitabcitab/node_modules/@next/eslint-plugin-next/dist/rules/no-styled-jsx-in-document.js
generated
vendored
Normal file
76
kitabcitab/node_modules/@next/eslint-plugin-next/dist/rules/no-styled-jsx-in-document.js
generated
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
"use strict";
|
||||
var _defineRule = require("../utils/define-rule");
|
||||
var path = _interopRequireWildcard(require("path"));
|
||||
function _getRequireWildcardCache() {
|
||||
if (typeof WeakMap !== "function") return null;
|
||||
var cache = new WeakMap();
|
||||
_getRequireWildcardCache = function() {
|
||||
return cache;
|
||||
};
|
||||
return cache;
|
||||
}
|
||||
function _interopRequireWildcard(obj) {
|
||||
if (obj && obj.__esModule) {
|
||||
return obj;
|
||||
}
|
||||
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
||||
return {
|
||||
default: obj
|
||||
};
|
||||
}
|
||||
var cache = _getRequireWildcardCache();
|
||||
if (cache && cache.has(obj)) {
|
||||
return cache.get(obj);
|
||||
}
|
||||
var newObj = {};
|
||||
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
||||
for(var key in obj){
|
||||
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
||||
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
||||
if (desc && (desc.get || desc.set)) {
|
||||
Object.defineProperty(newObj, key, desc);
|
||||
} else {
|
||||
newObj[key] = obj[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
newObj.default = obj;
|
||||
if (cache) {
|
||||
cache.set(obj, newObj);
|
||||
}
|
||||
return newObj;
|
||||
}
|
||||
var url = "https://nextjs.org/docs/messages/no-styled-jsx-in-document";
|
||||
module.exports = (0, _defineRule).defineRule({
|
||||
meta: {
|
||||
docs: {
|
||||
description: "Prevent usage of `styled-jsx` in `pages/_document.js`.",
|
||||
recommended: true,
|
||||
url: url
|
||||
},
|
||||
type: "problem",
|
||||
schema: []
|
||||
},
|
||||
create: function create(context) {
|
||||
return {
|
||||
JSXOpeningElement: function JSXOpeningElement(node) {
|
||||
var document = context.getFilename().split("pages")[1];
|
||||
if (!document) {
|
||||
return;
|
||||
}
|
||||
var ref = path.parse(document), name = ref.name, dir = ref.dir;
|
||||
if (!(name.startsWith("_document") || dir === "/_document" && name === "index")) {
|
||||
return;
|
||||
}
|
||||
if (node.name.name === "style" && node.attributes.find(function(attr) {
|
||||
return attr.type === "JSXAttribute" && attr.name.name === "jsx";
|
||||
})) {
|
||||
context.report({
|
||||
node: node,
|
||||
message: "`styled-jsx` should not be used in `pages/_document.js`. See: ".concat(url)
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user