Jslint, jsdoc and rhino to run from command line?

I need to check all my js files through the command line in a development environment before clicking production.how should I integrate this 3? so i can run

jslint jsfile.js or jslint jsfile1.js jsfile2.js etc 

similar to jsdoc for creating api documents jsdoc style.

Any idea or suggestion would be highly appreciated.

+3
source share
1 answer

You can find jslint4java to help you with this. In particular, you can automate this step as part of the ant build.

+1
source

All Articles