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
{{ message }}
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
This will allow the tool to be used in groups where have the convention of not documenting methods like init, or "private_*", or whatever weird name they may use.
So, being able to pass something like "--ignore-methods=foo_" or "--ignore-methods=___" would be great.
Thanks!
The text was updated successfully, but these errors were encountered:
It might be reasonable to allow the user to specify a regex for what is considered "private" and make it default to ^_.* (i.e., "starts with an underscore").
If the equivalent of the python 3 qual name was used, this would provide a workaround for #199.
The default regex would need to be roughly ^(.*\.)?_.*$
This will allow the tool to be used in groups where have the convention of not documenting methods like init, or "private_*", or whatever weird name they may use.
So, being able to pass something like "--ignore-methods=foo_" or "--ignore-methods=___" would be great.
Thanks!
The text was updated successfully, but these errors were encountered: