Atom linter / es-lint禁用一些警告

时间:2017-09-26 08:44:38

标签: javascript mocha atom-editor eslint linter

我正在使用wdio和mocha框架编写一些测试,我的linter包https://atom.io/packages/linterhttps://atom.io/packages/linter-eslint显示一些问题(请参阅注释):

describe('[On Board]', () => { //describe is not defined
  before(() => {  // before is not defined
    browser.waitUntil() //browser is not defined
    ....

未定义的东西将由wdio / mocha Testrunner处理,所以我想告诉我的linter / es-lint包忽略这个问题。

这可能吗?

1 个答案:

答案 0 :(得分:0)

有两种选择:

  1. 包括describe和其他变量定义的命名空间。
  2. 或者您可以更新.jshintrc以使linter知道您正在使用mocha框架并忽略错误。 可能有用的链接:Value Error