| import iterateJsdoc from '../iterateJsdoc.js'; |
| |
| export default iterateJsdoc(({ |
| report, |
| utils, |
| }) => { |
| utils.forEachPreferredTag('property', (jsdoc, targetTagName) => { |
| if (jsdoc.tag && jsdoc.name === '') { |
| report( |
| `There must be an identifier after @${targetTagName} ${jsdoc.type === '' ? 'type' : 'tag'}.`, |
| null, |
| jsdoc, |
| ); |
| } |
| }); |
| }, { |
| iterateAllJsdocs: true, |
| meta: { |
| docs: { |
| description: 'Requires that all `@property` tags have names.', |
| url: 'https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-property-name.md#repos-sticky-header', |
| }, |
| type: 'suggestion', |
| }, |
| }); |