UNPKG

eslint-plugin-jsdoc

Version:
82 lines (69 loc) 2 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _commentParser = require("comment-parser"); var _iterateJsdoc = _interopRequireDefault(require("../iterateJsdoc")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } const commentRegexp = /^\/\*(?!\*)/; var _default = (0, _iterateJsdoc.default)(({ context, sourceCode, allComments, makeReport }) => { const [{ ignore = ['ts-check', 'ts-expect-error', 'ts-ignore', 'ts-nocheck'] } = {}] = context.options; const nonJsdocNodes = allComments.filter(comment => { const commentText = sourceCode.getText(comment); if (!commentRegexp.test(commentText)) { return false; } const [{ tags = {} } = {}] = (0, _commentParser.parse)(`${commentText.slice(0, 2)}*${commentText.slice(2)}`); return tags.length && !tags.some(({ tag }) => { return ignore.includes(tag); }); }); if (!nonJsdocNodes.length) { return; } nonJsdocNodes.forEach(node => { const report = makeReport(context, node); const fix = fixer => { const text = sourceCode.getText(node); return fixer.replaceText(node, text.replace('/*', '/**')); }; report('Expected JSDoc-like comment to begin with two asterisks.', fix); }); }, { checkFile: true, meta: { docs: { description: 'This rule checks for multi-line-style comments which fail to meet the criteria of a jsdoc block.', url: 'https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-no-bad-blocks' }, fixable: 'code', schema: [{ additionalProperties: false, properties: { ignore: { items: { type: 'string' }, type: 'array' } }, type: 'object' }], type: 'layout' } }); exports.default = _default; module.exports = exports.default; //# sourceMappingURL=noBadBlocks.js.map