jslint、jsdoc 和 rhino 集成从命令行运行?
在推送到生产环境之前,我必须通过开发环境中的命令行测试所有 js 文件。我应该如何集成这 3 个文件?这样我就可以运行
jslint jsfile.js or jslint jsfile1.js jsfile2.js etc
类似的 jsdoc 来生成我的 jsdoc 风格的 api 文档。
任何想法或建议将受到高度赞赏。
I have to test all my js files through command line in development environment before push to production.how should i integrate this 3? so that i can run
jslint jsfile.js or jslint jsfile1.js jsfile2.js etc
similarly jsdoc to produce my jsdoc style api documents.
any idea or suggestion will be highly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能会发现 jslint4java 可以帮助您解决此问题。特别是,您可以在 ant 构建过程中自动执行此步骤。
You may find jslint4java useful to help you with this. In particular, you can automate this step as part of an ant build.