Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create option to not show private methods #93

Open
taylorjdawson opened this issue Oct 8, 2019 · 3 comments
Open

Create option to not show private methods #93

taylorjdawson opened this issue Oct 8, 2019 · 3 comments
Projects

Comments

@taylorjdawson
Copy link

Right now private methods are generated. It's necessary to add an option to not show those private methods.

This is the line that would need changing (I think):

From ->

.filter(method => !method.ignore && method.ctx)

To ->

.filter(method => !method.ignore &&  !method.isPrivate && method.ctx)
@neogeek
Copy link
Member

neogeek commented Feb 2, 2022

This is something I'm looking into supporting in the latest release v4. I'll post more here when I've made progress.

@neogeek neogeek added this to To do in v4 Feb 26, 2022
@mcqua007
Copy link

mcqua007 commented Apr 3, 2022

@neogeek This is something I was looking for as well. I thought it was an issue on my end. Is this still on backlog ?

@neogeek
Copy link
Member

neogeek commented Apr 4, 2022

@mcqua007 I've actually been working towards having options for all renderers, starting with this PR #168. Currently it only offers the ability to hide the generated timestamp. Hiding private methods will be next.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
v4
To do
Development

No branches or pull requests

3 participants