Can anyone point to a functioning JSLint plugin for eclipse (3.5)?
thanks
|
Can anyone point to a functioning JSLint plugin for eclipse (3.5)? thanks
| |||
|
feedback
|
|
There is a plugin You can also run jslint4java as an external tool:
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. | |||||||||||
feedback
|
|
I think I've found the simplest solution. If you install Aptana Studio, a free Eclipse plug-in, you get among other things, an excellent JavaScript IDE with support for Ext, jQuery and other major libraries. Using these instructions (copied here in case blogspot is blocked at work), you can easily turn on JSLint support.
| |||||||||||||
feedback
|
|
I do this a different way that integrates nicely with the IDE In eclipse most of this is one time set up and then it becomes quite easy to validate your code after that.
Almost done Now when you want to validate your javascript right click the file Rockstarapps -> Validate with JsLint... customize your validation settings and your done. (i usually just choose recommended) the problems will show up in your problems panel. | |||||||||
feedback
|
|
Use this: In Eclipse, Install New Software to http://svn.codespot.com/a/eclipselabs.org/mobile-web-development-with-phonegap/tags/r1.2/download I used jslint4java to add jslint to the Eclipse plugin for Android PhoneGap development. If you're not interested in PhoneGap or Android, you can choose only the jslint4java feature in the install wizard Usage information here. | ||||
|
feedback
|
|
You might consider a JsHint Eclipse plugin as an alternative. From what the project objective reads, it was originally a fork of JsHint with more option configuration. Eclipse plugin http://github.eclipsesource.com/jshint-eclipse/ JsHint reference http://www.jshint.com/about/ | |||
|
feedback
|