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
- Host: GitHub
- URL: https://github.com/webdriverio/eslint
- Owner: webdriverio
- License: mit
- Created: 2024-11-18T17:01:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-02-09T09:14:12.000Z (5 months ago)
- Last Synced: 2026-02-21T21:35:44.752Z (4 months ago)
- Language: TypeScript
- Size: 389 KB
- Stars: 1
- Watchers: 4
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).