Can anyone point to a functioning JSLint plugin for eclipse (3.5)?

thanks

link|improve this question

45% accept rate
feedback

5 Answers

up vote 15 down vote accepted

There is a plugin here and it works ok. (site is down)
The update site is http://update.rockstarapps.com/site.xml

You can also run jslint4java as an external tool:

  1. Download jslint4java
  2. Put jslint4java.jar somewhere
  3. Add an external tool configuration in Eclipse:
    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.

link|improve this answer
2  
You might find jslint4java to be easier to integrate. It's just a "java -jar" command. code.google.com/p/jslint4java – Dominic Mitchell May 18 '10 at 21:50
4  
I just installed the RockStarApps plug-in a few days ago. Went to install on a different laptop and the domain's expired. – iKnowKungFoo Jan 3 '11 at 23:34
The rockstarapps.com update site is not working anymore. Looks like the whole domain is gone and up for sale actually. – garbelini May 23 at 12:21
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.

You can enable it by doing:

  1. Open Aptana Studio- Go to Window > Preferences
  2. Go to Aptana > Editors > JavaScript > Validation in the left hand menu
  3. Check "JSLint JavaScript Validator"- Hit OK- Go to Window > Show View > Validation (may need to go to Show View - Other - Aptana Views)
  4. You'll see the Validation on the bottom right of the screen- Now also click Toggle Information and Toggle Warnings (found on the top left corner of the validation pane)

You're all set. JSLint will warn you whilst writing code

link|improve this answer
For people using Aptana Studio 3, JavaScript validation hasn't been implemented yet but they say it's planned for the final version. aptanastudio.tenderapp.com/discussions/questions/… – takteek May 26 '11 at 4:16
1  
It's actually in Preferences > Aptana > Validation > JavaScript . Thanks for the tip! – Gabriel R. Jun 3 '11 at 10:59
@Gabriel It really depends on your version of Eclipse and your version of Aptana. I'm using Eclipse 3.6.2.r362 & Aptana 2.0.5 and the path I listed is valid for those versions. – iKnowKungFoo Jun 3 '11 at 14:30
You must be right, I use Aptana Studio 3.x – Gabriel R. Jun 11 '11 at 21:58
This is no longer working as expected with Eclipse 3.7 The plug-in installs correctly, but the options are not present anywhere in the UI. Not in the project settings, not in the project contextual menu and not in the Eclipse preferences. – Gabriel R. Nov 6 '11 at 13:27
show 1 more comment
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.

  1. Help -> Install new software
  2. Click the 'Add' button
  3. expend the selection and check Rockstar JsLint
  4. Click 'Next'...again
  5. Accept and install
    • (you'll have to hit okay when it prompts you about installing unsigned content).
  6. Restart Eclipse...

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.

link|improve this answer
do you need to be in a certain view for this to work? I can see it's installed but can't find any way to run it from the application... – P4ul Jun 26 '11 at 22:31
Repo location out of date? – Simple As Could Be Feb 6 at 17:29
1  
It seems the Rockstar Repo site has been pwned. – Steven de Salas Feb 23 at 11:35
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.

link|improve this answer
Exactly what I was looking for. Thanks, Paul. – manakor Dec 20 '11 at 18:56
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/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.