使用 rhino 运行 jshint
我正在从使用 jslint 检查文件转向 jshint,但命令行语句似乎不起作用。
对于 jslint,我使用了有效的命令 rhino /home/mrtest/Desktop/jslint.js browser.js
。我对 rhino /home/mrtest/Desktop/jshint.js browser.js 尝试了同样的操作,但没有执行任何操作。
我做错了什么?
谢谢。
I'm moving from checking files with jslint to jshint but the command line statement doesn't seem to work.
For jslint I used the command rhino /home/mrtest/Desktop/jslint.js browser.js
which worked. I tried the same thing with rhino /home/mrtest/Desktop/jshint.js browser.js
which didn't do anything.
What am I doing wrong?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用完整代码库的
env
目录中的rhino.js
文件:https://github.com/jshint/jshint/例如
rhino /home/mrtest/Desktop/jshint/env/rhino.js browser.js
You need to use the
rhino.js
file in theenv
directory of the full codebase: https://github.com/jshint/jshint/e.g.
rhino /home/mrtest/Desktop/jshint/env/rhino.js browser.js
在 Ubuntu 10.04 上安装 JsHint
假设 rhino 已安装。
cd ~/bin/jshint-jshint-09e24d8
make rhino
现在可以使用:
~/bin/jshint-jshint-09e24d8/build/jshint-rhino.js MyJsFile.js< /code>
或者更方便:
alias jshint='~/bin/jshint-jshint-09e24d8/build/jshint-rhino.js'
$ jshint MyJsFile.js
这同样适用于大多数 Linux 版本。
Installing JsHint on Ubuntu 10.04
Assumes rhino is already installed.
cd ~/bin/jshint-jshint-09e24d8
make rhino
Can now use:
~/bin/jshint-jshint-09e24d8/build/jshint-rhino.js MyJsFile.js
or more conveniently:
alias jshint='~/bin/jshint-jshint-09e24d8/build/jshint-rhino.js'
$ jshint MyJsFile.js
The same will work on most Linux flavours.