66 lines
2.4 KiB
JavaScript
66 lines
2.4 KiB
JavaScript
"use strict";
|
|
var __defProp = Object.defineProperty;
|
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
var __export = (target, all) => {
|
|
for (var name in all)
|
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
};
|
|
var __copyProps = (to, from, except, desc) => {
|
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
for (let key of __getOwnPropNames(from))
|
|
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
}
|
|
return to;
|
|
};
|
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
var community_package_json_author_name_missing_exports = {};
|
|
__export(community_package_json_author_name_missing_exports, {
|
|
default: () => community_package_json_author_name_missing_default
|
|
});
|
|
module.exports = __toCommonJS(community_package_json_author_name_missing_exports);
|
|
var import_identifiers = require("../ast/identifiers");
|
|
var import_getters = require("../ast/getters");
|
|
var import_utils = require("../ast/utils");
|
|
var import_utils2 = require("@typescript-eslint/utils");
|
|
var community_package_json_author_name_missing_default = import_utils.utils.createRule({
|
|
name: import_utils.utils.getRuleName(module),
|
|
meta: {
|
|
type: "problem",
|
|
docs: {
|
|
description: "The `author.name` key must be present in the `package.json` of a community package.",
|
|
recommended: "strict"
|
|
},
|
|
schema: [],
|
|
messages: {
|
|
addAuthorName: "Add an `author.name` key to package.json"
|
|
}
|
|
},
|
|
defaultOptions: [],
|
|
create(context) {
|
|
return {
|
|
ObjectExpression(node) {
|
|
if (!import_identifiers.id.isCommunityPackageJson(context.getFilename(), node))
|
|
return;
|
|
const author = import_getters.getters.communityPackageJson.getAuthor(node);
|
|
if (!author)
|
|
return;
|
|
if (!hasAuthorName(author)) {
|
|
context.report({
|
|
messageId: "addAuthorName",
|
|
node
|
|
});
|
|
}
|
|
}
|
|
};
|
|
}
|
|
});
|
|
function hasAuthorName(author) {
|
|
if (author.ast.type === import_utils2.AST_NODE_TYPES.Property && author.ast.value.type === import_utils2.AST_NODE_TYPES.ObjectExpression) {
|
|
return author.ast.value.properties.some(import_identifiers.id.hasNameLiteral);
|
|
}
|
|
return false;
|
|
}
|