@vidispine/eslint-config 23.4.0-pre.2 → 23.4.0-pre.3
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 -3
- package/package.json +9 -14
package/README.md
CHANGED
|
@@ -5,9 +5,7 @@ Vdt's preferred react and typescript config
|
|
|
5
5
|
## Usage
|
|
6
6
|
|
|
7
7
|
1. Add **@vidispine/eslint-config** and **eslint (8.x)** as devDependencies,
|
|
8
|
-
|
|
9
|
-
- Also add **@vidispine/eslint-config-typescript** to lint `*.ts` and `*.tsx` files.
|
|
10
|
-
|
|
8
|
+
- Also uses **@vidispine/eslint-config-typescript** to lint `*.ts` and `*.tsx` files.
|
|
11
9
|
2. Extend config in package.json or equivalent file, e.g.:
|
|
12
10
|
|
|
13
11
|
```json
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vidispine/eslint-config",
|
|
3
|
-
"version": "23.4.0-pre.
|
|
3
|
+
"version": "23.4.0-pre.3",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"publishConfig": {
|
|
6
|
-
"access": "public"
|
|
6
|
+
"access": "public",
|
|
7
|
+
"registry": "https://registry.npmjs.org"
|
|
7
8
|
},
|
|
8
9
|
"description": "Eslint config for React apps",
|
|
9
10
|
"homepage": "https://vidispine.github.io/vdt",
|
|
@@ -19,23 +20,17 @@
|
|
|
19
20
|
"lint": "eslint . --cache --max-warnings=0 --ext .js,.jsx,.ts,.tsx,.md,.mdx"
|
|
20
21
|
},
|
|
21
22
|
"dependencies": {
|
|
22
|
-
"@vidispine/eslint-config-base": "23.4.0-pre.
|
|
23
|
-
"@vidispine/eslint-config-react": "23.4.0-pre.
|
|
23
|
+
"@vidispine/eslint-config-base": "23.4.0-pre.3",
|
|
24
|
+
"@vidispine/eslint-config-react": "23.4.0-pre.3"
|
|
24
25
|
},
|
|
25
26
|
"peerDependencies": {
|
|
26
|
-
"@vidispine/eslint-config-typescript": "23.4.0-pre.2",
|
|
27
27
|
"eslint": "^8.0.0"
|
|
28
28
|
},
|
|
29
|
-
"peerDependenciesMeta": {
|
|
30
|
-
"@vidispine/eslint-config-typescript": {
|
|
31
|
-
"optional": true
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
29
|
"devDependencies": {
|
|
35
|
-
"@vidispine/eslint-config-mdx": "23.4.0-pre.
|
|
36
|
-
"@vidispine/prettier-config": "23.4.0-pre.
|
|
37
|
-
"eslint": "8.
|
|
38
|
-
"prettier": "
|
|
30
|
+
"@vidispine/eslint-config-mdx": "23.4.0-pre.3",
|
|
31
|
+
"@vidispine/prettier-config": "23.4.0-pre.3",
|
|
32
|
+
"eslint": "8.55.0",
|
|
33
|
+
"prettier": "3.1.0"
|
|
39
34
|
},
|
|
40
35
|
"eslintConfig": {
|
|
41
36
|
"extends": [
|