|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- "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 }; }
-
- // Neither a single nor 3+ asterisks are valid jsdoc per
- // https://jsdoc.app/about-getting-started.html#adding-documentation-comments-to-your-code
- const commentRegexp = /^\/\*(?!\*)/u;
- const extraAsteriskCommentRegexp = /^\/\*{3,}/u;
-
- var _default = (0, _iterateJsdoc.default)(({
- context,
- sourceCode,
- allComments,
- makeReport
- }) => {
- const [{
- ignore = ['ts-check', 'ts-expect-error', 'ts-ignore', 'ts-nocheck'],
- preventAllMultiAsteriskBlocks = false
- } = {}] = context.options;
- let extraAsterisks = false;
- const nonJsdocNodes = allComments.filter(comment => {
- const commentText = sourceCode.getText(comment);
- let sliceIndex = 2;
-
- if (!commentRegexp.test(commentText)) {
- var _extraAsteriskComment;
-
- const multiline = (_extraAsteriskComment = extraAsteriskCommentRegexp.exec(commentText)) === null || _extraAsteriskComment === void 0 ? void 0 : _extraAsteriskComment[0];
-
- if (!multiline) {
- return false;
- }
-
- sliceIndex = multiline.length;
- extraAsterisks = true;
-
- if (preventAllMultiAsteriskBlocks) {
- return true;
- }
- }
-
- const [{
- tags = {}
- } = {}] = (0, _commentParser.parse)(`${commentText.slice(0, 2)}*${commentText.slice(sliceIndex)}`);
- 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, extraAsterisks ? text.replace(extraAsteriskCommentRegexp, '/**') : 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'
- },
- preventAllMultiAsteriskBlocks: {
- type: 'boolean'
- }
- },
- type: 'object'
- }],
- type: 'layout'
- }
- });
-
- exports.default = _default;
- module.exports = exports.default;
- //# sourceMappingURL=noBadBlocks.js.map
|