If you want to hide variables or methods of a constructor from feathers auto-complete because your coding style treats them as private, the comment ///@ignore is the best way for me. However if your constructer contains a lot of these variables or methods, you have to clutter the code with a lot of these comments.
Describe the solution you'd like
A start and end comment for the ///@ignore functionality would be extremely powerfull and could look like this:
///@ignore start
code
///@ignore end
Describe alternatives you've considered
An alternative would be to bind the ///@ignore to whole regions, like the following:
Is your feature request related to a problem?
If you want to hide variables or methods of a constructor from feathers auto-complete because your coding style treats them as
private
, the comment///@ignore
is the best way for me. However if your constructer contains a lot of these variables or methods, you have to clutter the code with a lot of these comments.Describe the solution you'd like
A start and end comment for the
///@ignore
functionality would be extremely powerfull and could look like this:Describe alternatives you've considered
An alternative would be to bind the
///@ignore
to whole regions, like the following:Additional context