I have 2 directories, one to keep to generate documentation and not the other one. They're:
- client-dev
- client
Directory client-dev
is to be included in generating documentation. The other one, client
should not be included.
My .esdoc.json file:
{
...
"excludes": ["(node_modules|client)"]
...
}
Specifying client
in the excludes
option above will exclude client-dev
too because it contains the word client
. How to keep client-dev
but exclude client
?