Skip to content

Commit 04520e3

Browse files
committed
release: 1.0.1
1 parent 3d89a2a commit 04520e3

File tree

21 files changed

+162
-123
lines changed

21 files changed

+162
-123
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## v1.0.1 (Sat Jan 27 2024)
2+
3+
### 🪄 Improvements
4+
5+
- Improve `jsx` and `jsx-legacy` presets.
6+
- Improve `core` and `core-legacy` presets.
7+
- Improve `recommended` and `recommended-legacy` presets.
8+
- Improve `recommended-type-checked` and `recommended-type-checked-legacy` presets.
9+
110
## v1.0.0 (Sat Jan 27 2024)
211

312
### 💥 Breaking Changes

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -87,17 +87,17 @@ module.exports = {
8787
> These presets are for ESLint `LegacyConfig` (`.eslintrc.*`) only
8888
8989
- **recommended-legacy** (`plugin:@eslint-react/recommended-legacy`)\
90-
Enforce recommended rules designed to catch common mistakes and prevent potential bugs.
90+
Enable recommended rules for typical React DOM projects.
9191
- **recommended-type-checked-legacy** (`plugin:@eslint-react/recommended-type-checked-legacy`)\
9292
Same as recommended-legacy but with additional rules that require type information.
9393
- **jsx-legacy** (`plugin:@eslint-react/jsx-legacy`)\
94-
Enable rules that are specific to JSX independently.
94+
Enable JSX rules.
9595
- **core-legacy** (`plugin:@eslint-react/core-legacy`)\
96-
Enable rules that are specific to React independently.
96+
Enable the most essential rules.
9797
- **dom-legacy** (`plugin:@eslint-react/dom-legacy`)\
98-
Enable rules that are specific to React DOM independently.
98+
Enable rules that are specific to React DOM.
9999
- **hooks-legacy** (`plugin:@eslint-react/hooks-legacy`)\
100-
Enable rules that are specific to React Hooks independently.
100+
Enable React Hooks rules independently.
101101
- **debug-legacy** (`plugin:@eslint-react/debug-legacy`)\
102102
Enable a series of rules that are useful for debugging purposes only.\
103103
(Not recommended unless you know what you are doing)
@@ -112,17 +112,17 @@ module.exports = {
112112
> These presets are for ESLint `FlatConfig` (`eslint.config.js`) only
113113
114114
- **recommended**\
115-
Enforce recommended rules designed to catch common mistakes and prevent potential bugs.
115+
Enable recommended rules for typical React DOM projects.
116116
- **recommended-type-checked**\
117117
Same as recommended but with additional rules that require type information.
118118
- **jsx**\
119-
Enable rules that are specific to JSX independently.
119+
Enable JSX rules.
120120
- **core**\
121-
Enable rules that are specific to React independently.
121+
Enable the most essential rules.
122122
- **dom**\
123-
Enable rules that are specific to React DOM independently.
123+
Enable rules that are specific to React DOM.
124124
- **hooks**\
125-
Enable rules that are specific to React Hooks independently.
125+
Enable React Hooks rules independently.
126126
- **debug**\
127127
Enable a series of rules that are useful for debugging purposes only.\
128128
(Not recommended unless you know what you are doing)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0
1+
1.0.1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/monorepo",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A platform for creating ESLint rules for not just for ReactDOM but also other libraries and frameworks that use React as a runtime.",
55
"keywords": [
66
"eslint",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/core",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "ESLint React's ESLint utility module for static analysis of React core APIs and Patterns.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/eslint-plugin-debug",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "ESLint React's ESLint plugin for debugging related rules.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/eslint-plugin-jsx",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "ESLint React's ESLint plugin for JSX related rules.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/eslint-plugin-naming-convention",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "ESLint React's ESLint plugin for naming convention related rules.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/eslint-plugin-react-dom",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "ESLint React's ESLint plugin for React DOM related rules.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/eslint-plugin-react-hooks",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "ESLint React's ESLint plugin for React Hooks related rules.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

0 commit comments

Comments
 (0)