tsdoc error while pnpm run lint:fix

pavanydg

New member
While running pnpm run lint:fix I'm getting tsdoc errors. I didn't modify anything and these errors were already present.
Am I doing something wrong or is there any step which I have to do before running that command?
 

Attachments

  • Screenshot 2026-01-13 at 12.11.57 AM.webp
    Screenshot 2026-01-13 at 12.11.57 AM.webp
    112.5 KB · Views: 6
@pavanydg
these are TSDoc linting errors, not TypeScript/runtime issues.
they come from invalid JSDoc-style tags (like @property or malformed {}) which TSDoc doesn’t support.
the react-toastify error is separate — direct imports are restricted and the project requires using the NotificationToast wrapper component instead.
import { NotificationToast } from 'src/components/NotificationToast';
hope this helps — feel free to follow up if you have any questions.
 
Back
Top