I’m running jsdoc
command line tool on third party files, of which I have no control.
An example for a command:
jsdoc -p <input_file> -d <output_dir>
I get some errors, related to types declared in these files (I get them also if I remove the -p
flag).
An example for an error:
Invalid return type. Check the documentation of function <class>.decode
I want to ignore any errors emitted by jsdoc
so I could get at least part of the output that is valid. Is there any command line flag for this? I couldn’t find in the documentation.