@open-turo/eslint-config-react 1.2.0 → 1.3.0
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
CHANGED
|
@@ -44,6 +44,8 @@ has been integrated into the default preset.
|
|
|
44
44
|
|
|
45
45
|
## Development
|
|
46
46
|
|
|
47
|
+
### Pre-commit
|
|
48
|
+
|
|
47
49
|
Install [pre-commit](https://pre-commit.com/) and the commit hooks:
|
|
48
50
|
|
|
49
51
|
```shell
|
|
@@ -51,6 +53,11 @@ pre-commit install
|
|
|
51
53
|
pre-commit install --hook-type commit-msg
|
|
52
54
|
```
|
|
53
55
|
|
|
56
|
+
### Keeping peerDependencies up-to-date
|
|
57
|
+
|
|
58
|
+
Transitive `peerDependencies` should be added, and kept up to date. A useful tool for that task is
|
|
59
|
+
`npx check-peer-dependencies`, which shows us our missing (or outdated) peerDependencies.
|
|
60
|
+
|
|
54
61
|
## Get Help
|
|
55
62
|
|
|
56
63
|
Please review Issues, post new Issues against this repository as needed.
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -4,14 +4,25 @@
|
|
|
4
4
|
"devDependencies": {
|
|
5
5
|
"@commitlint/cli": "^17.0.0",
|
|
6
6
|
"@open-turo/commitlint-config-conventional": "^1.0.2",
|
|
7
|
-
"@open-turo/eslint-config-typescript": "2.
|
|
7
|
+
"@open-turo/eslint-config-typescript": "^2.1.0",
|
|
8
8
|
"@semantic-release/git": "^10.0.1",
|
|
9
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
10
|
-
"@typescript-eslint/parser": "^5.
|
|
11
|
-
"eslint": "
|
|
9
|
+
"@typescript-eslint/eslint-plugin": "^5.46.0",
|
|
10
|
+
"@typescript-eslint/parser": "^5.46.0",
|
|
11
|
+
"eslint": ">=8.18.0",
|
|
12
|
+
"eslint-config-prettier": "^8.5.0",
|
|
13
|
+
"eslint-import-resolver-typescript": "^3.5.2",
|
|
14
|
+
"eslint-plugin-import": "^2.26.0",
|
|
15
|
+
"eslint-plugin-jest": "^27.1.6",
|
|
12
16
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
17
|
+
"eslint-plugin-node": "^11.1.0",
|
|
18
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
13
19
|
"eslint-plugin-react": "^7.29.4",
|
|
14
20
|
"eslint-plugin-react-hooks": "^4.4.0",
|
|
21
|
+
"eslint-plugin-simple-import-sort": "^8.0.0",
|
|
22
|
+
"eslint-plugin-sonarjs": "^0.16.0",
|
|
23
|
+
"eslint-plugin-sort-destructure-keys": "^1.4.0",
|
|
24
|
+
"eslint-plugin-typescript-sort-keys": "^2.1.0",
|
|
25
|
+
"prettier": "^2.5.1",
|
|
15
26
|
"semantic-release": "^19.0.2",
|
|
16
27
|
"semantic-release-github-pullrequest": "^1.3.0"
|
|
17
28
|
},
|
|
@@ -23,17 +34,28 @@
|
|
|
23
34
|
"main": "index.js",
|
|
24
35
|
"name": "@open-turo/eslint-config-react",
|
|
25
36
|
"peerDependencies": {
|
|
26
|
-
"@open-turo/eslint-config-typescript": "2.
|
|
27
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
28
|
-
"@typescript-eslint/parser": "^5.
|
|
29
|
-
"eslint": ">=8.
|
|
37
|
+
"@open-turo/eslint-config-typescript": "^2.1.0",
|
|
38
|
+
"@typescript-eslint/eslint-plugin": "^5.46.0",
|
|
39
|
+
"@typescript-eslint/parser": "^5.46.0",
|
|
40
|
+
"eslint": ">=8.18.0",
|
|
41
|
+
"eslint-config-prettier": "^8.5.0",
|
|
42
|
+
"eslint-import-resolver-typescript": "^3.5.2",
|
|
43
|
+
"eslint-plugin-import": "^2.26.0",
|
|
44
|
+
"eslint-plugin-jest": "^27.1.6",
|
|
30
45
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
46
|
+
"eslint-plugin-node": "^11.1.0",
|
|
47
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
48
|
+
"eslint-plugin-simple-import-sort": "^8.0.0",
|
|
49
|
+
"eslint-plugin-sonarjs": "^0.16.0",
|
|
50
|
+
"eslint-plugin-sort-destructure-keys": "^1.4.0",
|
|
51
|
+
"eslint-plugin-typescript-sort-keys": "^2.1.0",
|
|
31
52
|
"eslint-plugin-react": "^7.29.4",
|
|
32
|
-
"eslint-plugin-react-hooks": "^4.4.0"
|
|
53
|
+
"eslint-plugin-react-hooks": "^4.4.0",
|
|
54
|
+
"prettier": "^2.5.1"
|
|
33
55
|
},
|
|
34
56
|
"publishConfig": {
|
|
35
57
|
"access": "public"
|
|
36
58
|
},
|
|
37
59
|
"repository": "https://github.com/open-turo/eslint-config-react",
|
|
38
|
-
"version": "1.
|
|
60
|
+
"version": "1.3.0"
|
|
39
61
|
}
|
|
Binary file
|