eslint-plugin-wdio 7.17.1 → 7.17.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -5
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -6,14 +6,14 @@ ESLint rules for [WebdriverIO](https://webdriver.io)
|
|
|
6
6
|
|
|
7
7
|
You'll first need to install [ESLint](https://eslint.org):
|
|
8
8
|
|
|
9
|
-
```
|
|
10
|
-
|
|
9
|
+
```sh
|
|
10
|
+
npm i eslint --save-dev
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
Next, install `eslint-plugin-wdio`:
|
|
14
14
|
|
|
15
|
-
```
|
|
16
|
-
|
|
15
|
+
```sh
|
|
16
|
+
npm install eslint-plugin-wdio --save-dev
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
**Note:** If you installed ESLint globally (using the `-g` flag) then you must also install `eslint-plugin-wdio` globally.
|
|
@@ -23,7 +23,8 @@ $ npm install eslint-plugin-wdio --save-dev
|
|
|
23
23
|
This plugin export a recommended configuration that enforce good practices.
|
|
24
24
|
|
|
25
25
|
To enable this configuration use the extends property in your .eslintrc config file:
|
|
26
|
-
|
|
26
|
+
|
|
27
|
+
```json
|
|
27
28
|
{
|
|
28
29
|
"plugins": [
|
|
29
30
|
"wdio"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-wdio",
|
|
3
|
-
"version": "7.17.
|
|
3
|
+
"version": "7.17.2",
|
|
4
4
|
"description": "Eslint rules for WebdriverIO",
|
|
5
5
|
"author": "Christian Bromann <christian@saucelabs.com>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/eslint-plugin-wdio",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"bugs": {
|
|
24
24
|
"url": "https://github.com/webdriverio/webdriverio/issues"
|
|
25
25
|
},
|
|
26
|
-
"
|
|
26
|
+
"dependencies": {
|
|
27
27
|
"expect-webdriverio": "^3.1.4",
|
|
28
28
|
"glob": "^7.2.0"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "1609829c200c712def8c64b50012695af2fd28c9"
|
|
31
31
|
}
|