eslint-plugin-jsdoc
Version:
JSDoc linting rules for ESLint.
62 lines (56 loc) • 1.31 kB
JavaScript
import iterateJsdoc from '../iterateJsdoc.js';
import {
parse as parseType,
traverse,
} from '@es-joy/jsdoccomment';
export default iterateJsdoc(({
settings,
utils,
}) => {
if (settings.mode !== 'typescript') {
return;
}
/**
* @param {import('@es-joy/jsdoccomment').JsdocTagWithInline} tag
*/
const checkType = (tag) => {
const potentialType = tag.type;
let parsedType;
try {
parsedType = parseType(
/** @type {string} */ (potentialType), 'typescript',
);
} catch {
return;
}
traverse(parsedType, (nde) => {
switch (nde.type) {
case 'JsdocTypeObject': {
if (!nde.elements.length) {
utils.reportJSDoc('No empty object type.', tag);
}
}
}
});
};
const tags = utils.filterTags(({
tag,
}) => {
return Boolean(tag !== 'import' && utils.tagMightHaveTypePosition(tag));
});
for (const tag of tags) {
if (tag.type) {
checkType(tag);
}
}
}, {
iterateAllJsdocs: true,
meta: {
docs: {
description: 'Warns against use of the empty object type',
url: 'https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/ts-no-empty-object-type.md#repos-sticky-header',
},
schema: [],
type: 'suggestion',
},
});