You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While require-description correctly detects // eslint-disable-next-line ... and /* eslint-disable-next-line ... */ comments, it doesn't seem to work with multiline comments formatted like:
/*
eslint-disable-next-line ...
*/
I use this formatting when the description is very long, or project conventions suggest wrapping code at a certain number of characters:
/*
eslint-disable-next-line ... --
Long description goes here, instead of on the preceding line.
*/
While
require-description
correctly detects// eslint-disable-next-line ...
and/* eslint-disable-next-line ... */
comments, it doesn't seem to work with multiline comments formatted like:I use this formatting when the description is very long, or project conventions suggest wrapping code at a certain number of characters:
Reproduced at: https://stackblitz.com/edit/ravinduwu-gh-eslint-comments-247?file=index.js
The text was updated successfully, but these errors were encountered: