-
-
Notifications
You must be signed in to change notification settings - Fork 169
Closed
Labels
Description
With my current settings, the linter wants to change my alignment from this
/**
* Description
*
* @param {object} options The user's options
* @param {string} message The text to be logged
* @param {object} error Optional object with additional details
*/to this
/**
* Description
*
* @param {object} options The user's options
* @param {string} message The text to be logged
* @param {object} error Optional object with additional details
*/It should be able to detect that each section is starting at the same point on each line.
'jsdoc/check-line-alignment': [
1,
'always',
{
'tags': [
'param',
'arg',
'argument',
'property',
'prop',
'returns',
'return'
]
}
],