ChatGPT解决这个技术问题 Extra ChatGPT

How do I remove javascript validation from my eclipse project?

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?


M
Mr. Polywhirl

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.

Right-click your project. Navigate to: Properties → JavaScript → Include Path Select Source tab. (It looks identical to Java Build Path Source tab.) Expand JavaScript source folder. Highlight Excluded pattern. Press the Edit button. Press the Add button next to Exclusion patterns box. 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:

https://i.stack.imgur.com/cZO0r.png


This is actually the correct answer. The answer by Redlab is not sufficient, since it doesn't cancels the javascript project builder.
@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.
Doesn't change the fact that Redlab's answer doesn't actually solve the problem. You also have to do what Brad suggests below...
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
The excusion pattern to ignore all the javascript is */*.js. Adding this in the exclusion patter worked for me.
C
Community

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

Right click your project Select Properties -> Builders Uncheck the "JavaScript Validator"

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


no need to restart ecplise or rename any file..just build workspace and right click your project and Validate.
project -> clean did it for me
c
calraiden

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.


Since I have JSHint, this is the best answer for me. I removed also PyDev JS validator. Building is fast, finally.
If anyone is stuck on building project. This is the answer for you. Thank you very much @Claudionor Oliveira.....
Yeah, I was a long time with this problem and a solution was simple \o/
R
Redlab

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

or

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


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.
a
antony.trupe

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.


It doesn't seem to work, my Eclipse keeps validating JS regardless of this configuration.
b
biegleux

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!


p
pvgoddijn

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)


S
Sairam Krish

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.

https://i.stack.imgur.com/9Ma0u.png