mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
45 lines
1.4 KiB
JavaScript
45 lines
1.4 KiB
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.default = void 0;
|
||
|
|
||
|
var _iterateJsdoc = _interopRequireDefault(require("../iterateJsdoc"));
|
||
|
|
||
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||
|
|
||
|
const accessLevels = ['package', 'private', 'protected', 'public'];
|
||
|
|
||
|
var _default = (0, _iterateJsdoc.default)(({
|
||
|
report,
|
||
|
utils
|
||
|
}) => {
|
||
|
utils.forEachPreferredTag('access', (jsdocParameter, targetTagName) => {
|
||
|
const desc = targetTagName === 'access' ? jsdocParameter.description : jsdocParameter.name + ' ' + jsdocParameter.description;
|
||
|
|
||
|
if (!accessLevels.includes(desc.trim())) {
|
||
|
report(`Missing valid JSDoc @${targetTagName} level.`, null, jsdocParameter);
|
||
|
}
|
||
|
});
|
||
|
const accessLength = utils.getTags('access').length;
|
||
|
const individualTagLength = utils.getPresentTags(accessLevels).length;
|
||
|
|
||
|
if (accessLength && individualTagLength) {
|
||
|
report('The @access tag may not be used with specific access-control tags (@package, @private, @protected, or @public).');
|
||
|
}
|
||
|
|
||
|
if (accessLength > 1 || individualTagLength > 1) {
|
||
|
report('At most one access-control tag may be present on a jsdoc block.');
|
||
|
}
|
||
|
}, {
|
||
|
checkPrivate: true,
|
||
|
iterateAllJsdocs: true,
|
||
|
meta: {
|
||
|
type: 'suggestion'
|
||
|
}
|
||
|
});
|
||
|
|
||
|
exports.default = _default;
|
||
|
module.exports = exports.default;
|
||
|
//# sourceMappingURL=checkAccess.js.map
|