UNPKG

eslint-plugin-jsdoc

Version:
78 lines (73 loc) 1.81 kB
import iterateJsdoc from '../iterateJsdoc.js'; /** * @param {import('comment-parser').Line} line */ const removeType = ({ tokens, }) => { tokens.postTag = ''; tokens.type = ''; }; export default iterateJsdoc(({ utils, }) => { if (!utils.isIteratingFunction() && !utils.isVirtualFunction()) { return; } const tags = utils.getPresentTags([ 'param', 'arg', 'argument', 'returns', 'return', ]); for (const tag of tags) { if (tag.type) { utils.reportJSDoc(`Types are not permitted on @${tag.tag}.`, tag, () => { for (const source of tag.source) { removeType(source); } }); } } }, { contextDefaults: [ 'ArrowFunctionExpression', 'FunctionDeclaration', 'FunctionExpression', 'TSDeclareFunction', // Add this to above defaults 'TSMethodSignature' ], meta: { docs: { description: 'This rule reports types being used on `@param` or `@returns`.', url: 'https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-types.md#repos-sticky-header', }, fixable: 'code', schema: [ { additionalProperties: false, properties: { contexts: { items: { anyOf: [ { type: 'string', }, { additionalProperties: false, properties: { comment: { type: 'string', }, context: { type: 'string', }, }, type: 'object', }, ], }, type: 'array', }, }, type: 'object', }, ], type: 'suggestion', }, });