Skip to content

Commit 0d36513

Browse files
committed
release: 1.41.0-next.0
1 parent c21ebb8 commit 0d36513

File tree

19 files changed

+28
-21
lines changed

19 files changed

+28
-21
lines changed

.pkgs/configs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@eslint/js": "^9.24.0",
2323
"@stylistic/eslint-plugin": "^4.2.0",
2424
"eslint-plugin-de-morgan": "^1.2.1",
25-
"eslint-plugin-function": "^0.0.13",
25+
"eslint-plugin-function": "^0.0.14",
2626
"eslint-plugin-jsdoc": "^50.6.9",
2727
"eslint-plugin-perfectionist": "^4.11.0",
2828
"eslint-plugin-regexp": "^2.7.0",

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.40.5-beta.2
1+
1.41.0-next.0

apps/website/content/docs/rules/overview.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ Linter rules can have false positives, false negatives, and some rules are depen
133133

134134
## Debug Rules
135135

136-
| Rule || 🌟 | Description |
136+
| Rule || 🌟 | Description |
137137
| :------------------------------------------------- | :- | :--: | :------------------------------------------------------- |
138-
| [`class-component`](./debug-class-component) | 0️⃣ | `🐞` | Reports all class components |
138+
| [`class-component`](./debug-class-component) | 0️⃣ | `🐞` | Reports all class components |
139139
| [`function-component`](./debug-function-component) | 0️⃣ | `🐞` | Reports all function components |
140140
| [`hook`](./debug-hook) | 0️⃣ | `🐞` | Reports all react hooks |
141141
| [`is-from-react`](./debug-is-from-react) | 0️⃣ | `🐞` | Reports all identifiers that are initialized from React |

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/monorepo",
3-
"version": "1.40.5-beta.2",
3+
"version": "1.41.0-next.0",
44
"private": true,
55
"description": "Monorepo for eslint-plugin-react-[x, dom, web-api, hooks-extra, naming-convention].",
66
"keywords": [
@@ -94,7 +94,7 @@
9494
"typescript-eslint": "^8.29.0",
9595
"vitest": "^3.1.1"
9696
},
97-
"packageManager": "pnpm@10.7.1",
97+
"packageManager": "pnpm@10.8.0",
9898
"engines": {
9999
"node": ">=18.18.0"
100100
},

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.40.5-beta.2",
3+
"version": "1.41.0-next.0",
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-react-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-plugin-react-debug",
3-
"version": "1.40.5-beta.2",
3+
"version": "1.41.0-next.0",
44
"description": "ESLint React's ESLint plugin for debugging related rules.",
55
"keywords": [
66
"react",

packages/plugins/eslint-plugin-react-debug/src/rules/jsx.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,14 @@ react-debug/jsx
2424

2525
## Description
2626

27-
Reports all JSX elements. Useful for debugging. This rule should only be used for debugging purposes. Otherwise, leave it off.
27+
Reports all JSX elements with config properties `jsx`, `jsxFactory`, `jsxFragmentFactory`, `jsxImportSource`, and `jsxRuntime`.
28+
29+
- `jsx`
30+
- `jsxFactory`
31+
- `jsxFragmentFactory`
32+
- `jsxImportSource`
33+
- `jsxRuntime`
34+
- `jsxImportSource` is the source of the JSX factory and fragment factory functions.
2835

2936
## Examples
3037

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-plugin-react-dom",
3-
"version": "1.40.5-beta.2",
3+
"version": "1.41.0-next.0",
44
"description": "ESLint React's ESLint plugin for React DOM related rules.",
55
"keywords": [
66
"react",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-react-hooks-extra",
3-
"version": "1.40.5-beta.2",
3+
"version": "1.41.0-next.0",
44
"description": "ESLint React's ESLint plugin for React Hooks related rules.",
55
"keywords": [
66
"react",

packages/plugins/eslint-plugin-react-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-plugin-react-naming-convention",
3-
"version": "1.40.5-beta.2",
3+
"version": "1.41.0-next.0",
44
"description": "ESLint React's ESLint plugin for naming convention related rules.",
55
"keywords": [
66
"react",

0 commit comments

Comments
 (0)