mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
137 lines
3.4 KiB
JavaScript
137 lines
3.4 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
|
|
var _lodash = _interopRequireDefault(require("lodash"));
|
|
|
|
var _iterateJsdoc = _interopRequireDefault(require("../iterateJsdoc"));
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
// If supporting Node >= 10, we could loosen the default to this for the
|
|
// initial letter: \\p{Upper}
|
|
const matchDescriptionDefault = '^[A-Z`\\d_][\\s\\S]*[.?!`]$';
|
|
|
|
const stringOrDefault = (value, userDefault) => {
|
|
return typeof value === 'string' ? value : userDefault || matchDescriptionDefault;
|
|
};
|
|
|
|
var _default = (0, _iterateJsdoc.default)(({
|
|
jsdoc,
|
|
report,
|
|
context,
|
|
utils
|
|
}) => {
|
|
const options = context.options[0] || {};
|
|
|
|
const validateDescription = (description, tag) => {
|
|
if (!tag && options.mainDescription === false) {
|
|
return;
|
|
}
|
|
|
|
let tagValue = options.mainDescription;
|
|
|
|
if (tag) {
|
|
const tagName = tag.tag;
|
|
tagValue = options.tags[tagName];
|
|
}
|
|
|
|
const regex = new RegExp(stringOrDefault(tagValue, options.matchDescription), 'u');
|
|
|
|
if (!regex.test(description)) {
|
|
report('JSDoc description does not satisfy the regex pattern.', null, tag || {
|
|
// Add one as description would typically be into block
|
|
line: jsdoc.line + 1
|
|
});
|
|
}
|
|
};
|
|
|
|
if (jsdoc.description) {
|
|
validateDescription(jsdoc.description);
|
|
}
|
|
|
|
if (!options.tags || !Object.keys(options.tags).length) {
|
|
return;
|
|
}
|
|
|
|
const hasOptionTag = tagName => {
|
|
return Boolean(options.tags[tagName]);
|
|
};
|
|
|
|
utils.forEachPreferredTag('description', (matchingJsdocTag, targetTagName) => {
|
|
const description = (matchingJsdocTag.name + ' ' + matchingJsdocTag.description).trim();
|
|
|
|
if (hasOptionTag(targetTagName)) {
|
|
validateDescription(description, matchingJsdocTag);
|
|
}
|
|
}, true);
|
|
const whitelistedTags = utils.filterTags(({
|
|
tag: tagName
|
|
}) => {
|
|
return hasOptionTag(tagName);
|
|
});
|
|
|
|
const _utils$getTagsByType = utils.getTagsByType(whitelistedTags),
|
|
tagsWithNames = _utils$getTagsByType.tagsWithNames,
|
|
tagsWithoutNames = _utils$getTagsByType.tagsWithoutNames;
|
|
|
|
tagsWithNames.some(tag => {
|
|
const description = _lodash.default.trimStart(tag.description, '- ');
|
|
|
|
return validateDescription(description, tag);
|
|
});
|
|
tagsWithoutNames.some(tag => {
|
|
const description = (tag.name + ' ' + tag.description).trim();
|
|
return validateDescription(description, tag);
|
|
});
|
|
}, {
|
|
contextDefaults: true,
|
|
meta: {
|
|
schema: [{
|
|
additionalProperties: false,
|
|
properties: {
|
|
contexts: {
|
|
items: {
|
|
type: 'string'
|
|
},
|
|
type: 'array'
|
|
},
|
|
mainDescription: {
|
|
oneOf: [{
|
|
format: 'regex',
|
|
type: 'string'
|
|
}, {
|
|
type: 'boolean'
|
|
}]
|
|
},
|
|
matchDescription: {
|
|
format: 'regex',
|
|
type: 'string'
|
|
},
|
|
tags: {
|
|
patternProperties: {
|
|
'.*': {
|
|
oneOf: [{
|
|
format: 'regex',
|
|
type: 'string'
|
|
}, {
|
|
enum: [true],
|
|
type: 'boolean'
|
|
}]
|
|
}
|
|
},
|
|
type: 'object'
|
|
}
|
|
},
|
|
type: 'object'
|
|
}],
|
|
type: 'suggestion'
|
|
}
|
|
});
|
|
|
|
exports.default = _default;
|
|
module.exports = exports.default;
|
|
//# sourceMappingURL=matchDescription.js.map
|