Skip to content

Commit a701043

Browse files
committed
docs: update minimum node version to 18.18.0 and improve README.md
1 parent 2ae687a commit a701043

File tree

9 files changed

+21
-14
lines changed

9 files changed

+21
-14
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22

33
<h1 align="center" alt="title">ESLint React</h1>
44

5-
More than 50 ESLint rules to catch common mistakes and improve your React code. Rewritten from the scratch (mostly).
5+
A full TypeScript rewrite of eslint-plugin-react, with well-designed rule behaviors and sensible defaults for modern React apps.
6+
7+
## Highlights
8+
9+
- Full TypeScript rewrite.
10+
- Well designed rule behaviors and sensible defaults.
11+
- Maximum flexibility through minimum configuration options.
12+
- No auto-fix, Formatting independent, treat your codebase like it's read-only.
613

714
## Public packages
815

@@ -16,7 +23,7 @@ More than 50 ESLint rules to catch common mistakes and improve your React code.
1623

1724
### Node.js
1825

19-
- 18.15.0 or later
26+
- 18.18.0 or later
2027

2128
### Bun
2229

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@eslint-react/monorepo",
33
"version": "0.10.2-beta.0",
4-
"description": "ESLint React's monorepo. More than 50 ESLint rules to catch common mistakes and improve your React code. Rewritten from the scratch (mostly).",
4+
"description": "ESLint React's monorepo. A full TypeScript rewrite of eslint-plugin-react, with well-designed rule behaviors and sensible defaults for modern React apps.",
55
"keywords": [
66
"eslint",
77
"eslint-plugin",
@@ -70,7 +70,7 @@
7070
"@vitest/ui": "1.1.0",
7171
"bun": "1.0.20",
7272
"bun-types": "1.0.20",
73-
"cspell": "8.2.4",
73+
"cspell": "8.3.0",
7474
"dedent": "1.5.1",
7575
"dprint": "0.45.0",
7676
"effect": "2.0.0-next.62",
@@ -108,7 +108,7 @@
108108
"packageManager": "[email protected]",
109109
"engines": {
110110
"bun": ">=1.0.15",
111-
"node": ">=18.15.0"
111+
"node": ">=18.18.0"
112112
},
113113
"publishConfig": {
114114
"access": "public"

packages/plugins/eslint-plugin-debug/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
},
6464
"engines": {
6565
"bun": ">=1.0.15",
66-
"node": ">=18.15.0"
66+
"node": ">=18.18.0"
6767
},
6868
"publishConfig": {
6969
"access": "public"

packages/plugins/eslint-plugin-jsx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
},
6565
"engines": {
6666
"bun": ">=1.0.15",
67-
"node": ">=18.15.0"
67+
"node": ">=18.18.0"
6868
},
6969
"publishConfig": {
7070
"access": "public"

packages/plugins/eslint-plugin-naming-convention/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
},
6464
"engines": {
6565
"bun": ">=1.0.15",
66-
"node": ">=18.15.0"
66+
"node": ">=18.18.0"
6767
},
6868
"publishConfig": {
6969
"access": "public"

packages/plugins/eslint-plugin-react-hooks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
},
6464
"engines": {
6565
"bun": ">=1.0.15",
66-
"node": ">=18.15.0"
66+
"node": ">=18.18.0"
6767
},
6868
"publishConfig": {
6969
"access": "public"

packages/plugins/eslint-plugin-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
},
6464
"engines": {
6565
"bun": ">=1.0.15",
66-
"node": ">=18.15.0"
66+
"node": ">=18.18.0"
6767
},
6868
"publishConfig": {
6969
"access": "public"

packages/plugins/eslint-plugin/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<h1 align="center" alt="title">ESLint React</h1>
44

5-
More than 50 ESLint rules to catch common mistakes and improve your React code. Rewritten from the scratch (mostly).
5+
A full TypeScript rewrite of eslint-plugin-react, with well-designed rule behaviors and sensible defaults for modern React apps.
66

77
## Supported React versions
88

@@ -12,7 +12,7 @@ More than 50 ESLint rules to catch common mistakes and improve your React code.
1212

1313
### Node.js
1414

15-
- 18.15.0 or later
15+
- 18.18.0 or later
1616

1717
### Bun
1818

packages/plugins/eslint-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@eslint-react/eslint-plugin",
33
"version": "0.10.2-beta.0",
4-
"description": "ESLint React's main ESLint plugin. More than 50 ESLint rules to catch common mistakes and improve your React code. Rewritten from the scratch (mostly).",
4+
"description": "ESLint React's main ESLint plugin. A full TypeScript rewrite of eslint-plugin-react, with well-designed rule behaviors and sensible defaults for modern React apps.",
55
"keywords": [
66
"eslint",
77
"eslint-plugin",
@@ -68,7 +68,7 @@
6868
},
6969
"engines": {
7070
"bun": ">=1.0.15",
71-
"node": ">=18.15.0"
71+
"node": ">=18.18.0"
7272
},
7373
"publishConfig": {
7474
"access": "public"

0 commit comments

Comments
 (0)