如何从 Eclipse 中的 Javascript 验证中排除 Javascript 文件

发布于 2024-10-15 12:15:24 字数 407 浏览 2 评论 0原文

我的 javascript 验证对我自己的代码运行良好。我想保留验证。但是当涉及到开源库时,例如 jquery,验证会产生警告。

我不希望在下载的库时收到警告。但我想为我的代码保留警告。

我知道您可以在“首选项 > 验证”窗口中从验证中排除文件,但是不存在 javascript 验证< /强>!我查看了每个验证器,javascript 验证器不存在。

那么如何从验证中排除特定文件呢?

这是我拥有的验证器列表: 屏幕截图

谢谢!

PS:我使用Eclipse PDT。!

I have the javascript validation working good for my own code. I want to keep the validation. But when it comes to open source library, like jquery for example, the validation creates warnings.

I don't want warnings over a downloaded library. But I want to keep warnings for my code.

I know you can exclude files from validation in the "Preferences > Validation" window, but the javascript validation is not there ! I've looked each validator, the javascript validator is not there.

So how can I exclude specific files from the validation ?

Here is the list of validators I have :
Screenshot

Thanks !

PS : I use Eclipse PDT.!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

葬心 2024-10-22 12:15:24

好吧,也许我已经成功地做到了你所需要的;)这有点棘手。所以我的步骤:

  1. 下载Eclipse PDT(确保
    它对你有用,因为我用
    Eclipse for Java EE)
  2. 创建了项目 TestJS(它是
    JavaScript 项目)
  3. 创建了两个文件 test.js 和
    htmlparser.js(最后一个复制自
    John Resig 的站点)
  4. 在这两个脚本中都输入了“损坏的”脚本,因此 Eclipse 告诉我,这两个脚本中都有错误,
  5. 请转到 Project Properties > 。
    JavaScript >包含路径>来源
    ,
    有“排除”突出显示并
    按“编辑”按钮,就到了
    能够添加您想要排除的内容
    (文件、文件夹、模式)。
  6. 我排除了“test.js”文件,按下
    申请...
  7. ...并得到了幸福的结局:现在
    Eclipse 指出我有
    htmlparser.js 中出现错误,但不在
    test.js ;)

屏幕截图:
在此处输入图像描述

真的希望它有帮助!

well, probably I've managed to do what you need ;) It is a bit tricky. So my steps:

  1. downloaded Eclipse PDT (to be sure
    that it works for you, because I use
    Eclipse for Java EE)
  2. created project TestJS (it was
    JavaScript project)
  3. created two files, test.js and
    htmlparser.js (last one copied from
    John Resig's site)
  4. typed "broken" script in both of them, so Eclipse told me that there were errors in both of them
  5. went to Project Properties >
    JavaScript > Include Path > Source
    ,
    there is "Excluded" to highlight and
    press "Edit" button, here you are
    able to add what you want to exclude
    (file, folder, pattern).
  6. I excluded "test.js" file, pressed
    apply...
  7. ...and got a happy ending: now
    Eclipse point me out that there is
    error in htmlparser.js, but not in
    test.js ;)

ScreenShot:
enter image description here

Really hope that it helps!

情泪▽动烟 2024-10-22 12:15:24

根据 Maxym 的出色回答:由于我通常将所有 JavaScript 库放在一个位置,并且 Eclipse 验证器往往会发现异常错误(可能完全是误报),因此我使用了添加多个选项并选择了文件夹包含这些库。无需每次添加文件时都进行更新!

在此处输入图像描述

Following from Maxym's excellent answer: since I usually keep all my JavaScript libraries in one place and the Eclipse validator tends to find unusual errors (perhaps entirely false positives), I used the Add Multiple option and selected the folders that contained those libraries. No need to update each time you add a file!

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文