1.0.1 • Published 8 years ago

eslint-plugin-webdriverio v1.0.1

Weekly downloads
16,267
License
ISC
Repository
gitlab
Last release
8 years ago

eslint-plugin-webdriverio 🤖

The browser and $/$$ helpers are globally available in WebdriverIO. This ESLint plugin makes it easy to configure your WDIO project.

Usage

There are several ways to configure environments in ESLint.

For example in combination with Mocha:

Individual Source File

/* eslint-env webdriverio/wdio, mocha */

ESLint

.eslintrc:

{
  "plugins": ["webdriverio"],
  "env": {
    "webdriverio/wdio": true,
    "mocha": true
  }
}

StandardJS

package.json:

{
  "standard": {
    "plugins": [
      "webdriverio"
    ],
    "env": [
      "mocha",
      "webdriverio/wdio"
    ]
  }
}
1.0.1

8 years ago

1.0.0

8 years ago