123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- "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 }; }
-
- /**
- * We can skip checking for a throws value, in case the documentation is inherited
- * or the method is either a constructor or an abstract method.
- *
- * @param {*} utils
- * a reference to the utils which are used to probe if a tag is present or not.
- * @returns {boolean}
- * true in case deep checking can be skipped; otherwise false.
- */
- const canSkip = utils => {
- return utils.hasATag([// inheritdoc implies that all documentation is inherited
- // see https://jsdoc.app/tags-inheritdoc.html
- //
- // Abstract methods are by definition incomplete,
- // so it is not necessary to document that they throw an error.
- 'abstract', 'virtual', // The designated type can itself document `@throws`
- 'type']) || utils.avoidDocs();
- };
-
- var _default = (0, _iterateJsdoc.default)(({
- report,
- utils
- }) => {
- // A preflight check. We do not need to run a deep check for abstract
- // functions.
- if (canSkip(utils)) {
- return;
- }
-
- const tagName = utils.getPreferredTagName({
- tagName: 'throws'
- });
-
- if (!tagName) {
- return;
- }
-
- const tags = utils.getTags(tagName);
- const iteratingFunction = utils.isIteratingFunction(); // In case the code returns something, we expect a return value in JSDoc.
-
- const [tag] = tags;
- const missingThrowsTag = typeof tag === 'undefined' || tag === null;
-
- const shouldReport = () => {
- if (!missingThrowsTag) {
- return false;
- }
-
- return iteratingFunction && utils.hasThrowValue();
- };
-
- if (shouldReport()) {
- report(`Missing JSDoc @${tagName} declaration.`);
- }
- }, {
- contextDefaults: true,
- meta: {
- docs: {
- url: 'https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-require-returns'
- },
- schema: [{
- additionalProperties: false,
- properties: {
- contexts: {
- items: {
- anyOf: [{
- type: 'string'
- }, {
- additionalProperties: false,
- properties: {
- comment: {
- type: 'string'
- },
- context: {
- type: 'string'
- }
- },
- type: 'object'
- }]
- },
- type: 'array'
- },
- exemptedBy: {
- items: {
- type: 'string'
- },
- type: 'array'
- }
- },
- type: 'object'
- }],
- type: 'suggestion'
- }
- });
-
- exports.default = _default;
- module.exports = exports.default;
- //# sourceMappingURL=requireThrows.js.map
|