An open API service indexing awesome lists of open source software.

https://github.com/webdriverio/eslint

ESLint configurations for WebdriverIO projects
https://github.com/webdriverio/eslint

Last synced: 3 months ago
JSON representation

ESLint configurations for WebdriverIO projects

Awesome Lists containing this project

README

          

# WebdriverIO ESLint Configuration

> ESLint configurations for WebdriverIO projects

This package is meant for internal usage only within the WebdriverIO ecosystem. However if you find this package useful, feel free to use it.

## Install

This package can be installed via:

```sh
npm i --save-dev @wdio/eslint
```

## Setup

Create a `eslint.config.mjs` file in the root of your repository, containing the following:

```js
import wdioEslint from '@wdio/eslint'

export default wdioEslint.config(
[
// your custom project configuration
]
);
```

---

For more information on WebdriverIO see the [homepage](https://webdriver.io).