@appium/eslint-config-appium-ts 1.0.3 → 2.0.0-rc.1
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 +1 -13
- package/package.json +17 -14
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
## Usage
|
|
9
9
|
|
|
10
|
-
Install the package
|
|
10
|
+
Install the package:
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
13
|
npm install @appium/eslint-config-appium-ts --save-dev
|
|
@@ -24,18 +24,6 @@ export default [
|
|
|
24
24
|
];
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
-
## Peer Dependencies
|
|
28
|
-
|
|
29
|
-
This config requires the following packages be installed (as peer dependencies) in your project. See the `package.json` for the required versions.
|
|
30
|
-
|
|
31
|
-
- [eslint](https://www.npmjs.com/package/eslint)
|
|
32
|
-
- [eslint-config-prettier](https://www.npmjs.com/package/eslint-config-prettier)
|
|
33
|
-
- [eslint-plugin-import](https://www.npmjs.com/package/eslint-plugin-import)
|
|
34
|
-
- [eslint-plugin-mocha](https://www.npmjs.com/package/eslint-plugin-mocha)
|
|
35
|
-
- [eslint-plugin-promise](https://www.npmjs.com/package/eslint-plugin-promise)
|
|
36
|
-
- [@typescript-eslint/eslint-plugin](https://www.npmjs.com/package/@typescript-eslint/eslint-plugin)
|
|
37
|
-
- [@typescript-eslint/parser](https://www.npmjs.com/package/@typescript-eslint/parser)
|
|
38
|
-
|
|
39
27
|
## Notes
|
|
40
28
|
|
|
41
29
|
- This configuration is intended to be used alongside [Prettier](https://www.npmjs.com/package/prettier).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appium/eslint-config-appium-ts",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.0-rc.1",
|
|
5
5
|
"description": "Shared ESLint config for Appium projects (TypeScript version)",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"eslint",
|
|
@@ -28,23 +28,26 @@
|
|
|
28
28
|
"scripts": {
|
|
29
29
|
"test:smoke": "exit 0"
|
|
30
30
|
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@eslint/compat": "1.3.2",
|
|
33
|
+
"@eslint/js": "9.33.0",
|
|
34
|
+
"eslint-config-prettier": "10.1.8",
|
|
35
|
+
"eslint-import-resolver-typescript": "4.4.4",
|
|
36
|
+
"eslint-plugin-import": "2.32.0",
|
|
37
|
+
"eslint-plugin-mocha": "10.5.0",
|
|
38
|
+
"eslint-plugin-promise": "7.2.1",
|
|
39
|
+
"typescript-eslint": "8.39.1"
|
|
40
|
+
},
|
|
31
41
|
"peerDependencies": {
|
|
32
|
-
"
|
|
33
|
-
"@eslint/js": "^9.0.0",
|
|
34
|
-
"eslint": "^9.0.0",
|
|
35
|
-
"eslint-config-prettier": "^9.0.0 || ^10.0.0",
|
|
36
|
-
"eslint-import-resolver-typescript": "^3.5.0",
|
|
37
|
-
"eslint-plugin-import": "^2.30.0",
|
|
38
|
-
"eslint-plugin-mocha": "^10.4.0",
|
|
39
|
-
"eslint-plugin-promise": "^7.0.0",
|
|
40
|
-
"typescript-eslint": "^8.0.0"
|
|
42
|
+
"eslint": "^9.0.0"
|
|
41
43
|
},
|
|
42
44
|
"engines": {
|
|
43
|
-
"node": "^
|
|
44
|
-
"npm": ">=
|
|
45
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
46
|
+
"npm": ">=10"
|
|
45
47
|
},
|
|
46
48
|
"publishConfig": {
|
|
47
|
-
"access": "public"
|
|
49
|
+
"access": "public",
|
|
50
|
+
"tag": "rc"
|
|
48
51
|
},
|
|
49
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "157425ce6aa01c009533f5bf6a56b14570222b00"
|
|
50
53
|
}
|