Ensure that block comments note the desired @access
property
This rule aims to...
The following patterns are considered warnings:
/**
Something without access documented.
*/
export function someNonDeterminedThing() {}
The following patterns are not warnings:
/**
* This thing is private and documented in JSDoc style.
*
* @private
*/
export function someAnotherPrivateThing() {}
If you're not concerned with leaving notes to yourself or other developers about the context in which some function should be used, then you can turn this rule off.