mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
50 lines
1.1 KiB
JavaScript
50 lines
1.1 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 }; }
|
||
|
|
||
|
var _default = (0, _iterateJsdoc.default)(({
|
||
|
report,
|
||
|
utils
|
||
|
}) => {
|
||
|
const iteratingFunction = utils.isIteratingFunction();
|
||
|
|
||
|
if (iteratingFunction) {
|
||
|
if (utils.hasATag(['class', 'constructor']) || utils.isConstructor()) {
|
||
|
return;
|
||
|
}
|
||
|
} else if (!utils.isVirtualFunction()) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
utils.forEachPreferredTag('implements', tag => {
|
||
|
report('@implements used on a non-constructor function', null, tag);
|
||
|
});
|
||
|
}, {
|
||
|
contextDefaults: true,
|
||
|
meta: {
|
||
|
schema: [{
|
||
|
additionalProperties: false,
|
||
|
properties: {
|
||
|
contexts: {
|
||
|
items: {
|
||
|
type: 'string'
|
||
|
},
|
||
|
type: 'array'
|
||
|
}
|
||
|
},
|
||
|
type: 'object'
|
||
|
}],
|
||
|
type: 'suggestion'
|
||
|
}
|
||
|
});
|
||
|
|
||
|
exports.default = _default;
|
||
|
module.exports = exports.default;
|
||
|
//# sourceMappingURL=implementsOnClasses.js.map
|