358

I am using eclipse on my project and while messing around with my eclipse settings, I turned on Javascript support. Now eclipse complains that JQuery library has errors in it and is not letting me compile the project. Does anyone know how to turn javascript validation off?

Ritesh M Nayak
  • 8,001
  • 14
  • 49
  • 78

8 Answers8

723

I actually like MY JavaScript files to be validated, but I definitely don't want to validate and deal with trivial warnings with third party libraries.

That's why I think that turning off validation all together is too drastic. Fortunately with Eclipse, you can selectively remove some JavaScript sources from validation.

  1. Right-click your project.
  2. Navigate to: Properties → JavaScript → Include Path
  3. Select Source tab. (It looks identical to Java Build Path Source tab.)
  4. Expand JavaScript source folder.
  5. Highlight Excluded pattern.
  6. Press the Edit button.
  7. Press the Add button next to Exclusion patterns box.
  8. You may either type Ant-style wildcard pattern, or click Browse button to mention the JavaScript source by name.

The information about JavaScript source inclusion/exclusion is saved into .settings/.jsdtscope file. Do not forget to add it to your SCM.

Here is how configuration looks with jQuery files removed from validation:

Eclipse - Project Properties - JavaScript - Include Path

Mr. Polywhirl
  • 42,981
  • 12
  • 84
  • 132
Alexander Pogrebnyak
  • 44,836
  • 10
  • 105
  • 121
  • 3
    This is actually the correct answer. The answer by Redlab is not sufficient, since it doesn't cancels the javascript project builder. – Yoni Dec 13 '11 at 21:14
  • 2
    @Yoni. Don't forget the question was asked and originally answered more than a year ago. This solution may not have even been available back then. – Alexander Pogrebnyak Dec 14 '11 at 02:09
  • Doesn't change the fact that Redlab's answer doesn't actually solve the problem. You also have to do what Brad suggests below... – Jules Jan 29 '12 at 15:36
  • 1
    I've been so long annoyed by error highlight on project that i work on because some issues in jquery ui library... and this was soo easy to fix... thanks :D – T.G Dec 16 '12 at 08:58
  • You browse to any js file that you don't want eclipse to validate, such as jquery. – Kevin Mar 11 '13 at 18:58
  • At 'edit dialog' you select file/directory with 'add multiple' instead of writing regular some pattern.. – radeklos Apr 01 '13 at 18:24
  • Caveat/Tip: After you perform the steps above you'll need to probably do a *Project->Clean* to make those dreaded red X's go away. – Adam Gent Apr 08 '13 at 12:40
  • What is meant by this at the end of the answer? "Do not forget to add it to your SCM." – cellepo Jul 30 '14 at 20:03
  • @cellepo. SCM - Source Control Managment system, as in GIT, SVN, CVS, etc. – Alexander Pogrebnyak Jul 31 '14 at 15:59
  • This is not answer to How to disable validation, this is answer to How to exclude resources from validation. @Brad Marchesseault gave the correct answer. – Jaroslav Záruba Oct 01 '14 at 09:22
  • 1
    The excusion pattern to ignore all the javascript is `*/*.js`. Adding this in the exclusion patter worked for me. – Lucky Jul 01 '16 at 09:34
125

Turn off the JavaScript Validator in the "Builders" config for your project:

  1. Right click your project
  2. Select Properties -> Builders
  3. Uncheck the "JavaScript Validator"

Then either restart your Eclipse or/and rename the .js to something like .js_ then back again.

Community
  • 1
  • 1
Brad Marchesseault
  • 1,275
  • 1
  • 8
  • 2
10

I removed the tag in the .project .

    <buildCommand>
        <name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
        <arguments>
        </arguments>
    </buildCommand>

It's worked very well for me.

calraiden
  • 1,686
  • 1
  • 27
  • 37
9

Window -> Preferences -> JavaScript -> Validator (also per project settings possible)

or

Window -> Preferences -> Validation (disable validations and configure their settings)

Redlab
  • 3,110
  • 19
  • 17
  • 6
    Doesn't work since the Javascript validator is an Eclipse builder and even turning off all validation on a project will still try to validate the Javascript in your project. – Dieter Hubau Aug 11 '14 at 07:59
3

Go to Windows->Preferences->Validation.

There would be a list of validators with checkbox options for Manual & Build, go and individually disable the javascript validator there.

If you select the Suspend All Validators checkbox on the top it doesn't necessarily take affect.

antony.trupe
  • 10,640
  • 10
  • 57
  • 84
Rahul
  • 41
  • 2
2

I was able to exclude the jquery.mobile 1.1.1 in Juno by selecting Add Multiple next to the Exlusion Patterns, which brings up the tree, then drilling down to the jquery-mobile folder and selecting that.

This corrected all the warnings for the library!

biegleux
  • 13,179
  • 11
  • 45
  • 52
treociti
  • 21
  • 1
0

Another reason could be that you acidentically added a Javascript nature to your project unintentionally (i just did this by accident) which enables javascript error checking.

removing this ....javascriptnature from your project fixes that.

(this is ofcourse only if you dont want eclipse to realise you have any JS)

pvgoddijn
  • 12,638
  • 15
  • 47
  • 56
0

In addition, if you are using Tern eclipse IDE or IBM Node.js Tools for Eclipse, you may need to disable JSHint and other libraries that you don't want.

To disable this, Project Properties > Tern > Modules > JSHint or any other library that you don't want. enter image description here

Sairam Krish
  • 10,158
  • 3
  • 55
  • 67