Is there a working JSLint Eclipse plug-in?(是否有可用的 JSLint Eclipse 插件?)
问题描述
谁能指出一个功能正常的 JSLint Eclipse 插件?
有个插件here 它工作正常.(网站在 2011 年某个时候关闭) 更新站点是http://update.rockstarapps.com/site.xml(网站于 2012-07-24 关闭)
您也可以将 jslint4java 作为外部工具运行:
- 下载jslint4java
- 把
jslint4java.jar
放在某处 - 在 Eclipse 中添加一个外部工具配置(运行 > 外部工具 > 外部工具配置 > 程序 > 新建...):<上一页>位置:/usr/bin/java(或您的 javaw.exe 路径)参数:-jar/path/to/jslint4java.jar ${resource_loc}
现在您可以在项目资源管理器中选择一个 js 文件并从外部工具菜单中运行 jslint4java.
Can anyone point to a functioning JSLint plug-in for Eclipse?
There is a plugin here and it works ok. (site is down sometime in 2011)
The update site is http://update.rockstarapps.com/site.xml (site down 2012-07-24)
You can also run jslint4java as an external tool:
- Download jslint4java
- Put
jslint4java.jar
somewhere - Add an external tool configuration in Eclipse (Run > External Tools > External Tools Configurations > Program > New...):
Location: /usr/bin/java (or your path to javaw.exe) Arguments: -jar /path/to/jslint4java.jar ${resource_loc}
Now you can select a js file in the Project Explorer and run jslint4java from the external tools menu.
这篇关于是否有可用的 JSLint Eclipse 插件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否有可用的 JSLint Eclipse 插件?


- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01