-
Notifications
You must be signed in to change notification settings - Fork 210
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
Allow excluding specific files #319
Comments
{
"options": {
"exclude": "src/b"
}
} |
Exactly that doesn't work for me - the file is still processed and gives a bunch of warnings. |
I cannot reproduce your problem. Could you provide reproducible example? |
Not a lot more I can tell you, tried this "real" example: Nevermind if I'm the only one having this problem - I've switched to JSDoc now in any case. |
{
"options": {
"exclude": "internet"
}
} Please let me know if it doesn't works. |
Yeah, that works. But there is no way to exclude |
Okay, I think supporting glob pattern is nice. I'll take a look detail. Of course, patch welcome. |
The ignorePaths and exclude options do not allow excluding specific files from the docs.
Example:
I want to include "src/a/hello.js" but exclude "src/b/hello.js"
For now it looks like I'm going to have to write a script to copy all the stuff I want to a separate folder just to create the docs.
Why not use a .gitignore style solution?
The text was updated successfully, but these errors were encountered: