Skip to content

Commit bb9ea7a

Browse files
committed
release: 1.42.2-next.5
1 parent fb55b40 commit bb9ea7a

File tree

21 files changed

+44
-37
lines changed

21 files changed

+44
-37
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
[![Version](https://img.shields.io/npm/v/@eslint-react/eslint-plugin?style=flat&colorA=000000&colorB=000000)](https://npmjs.com/package/@eslint-react/eslint-plugin)
66
[![Downloads](https://img.shields.io/npm/dt/@eslint-react/eslint-plugin.svg?style=flat&colorA=000000&colorB=000000)](https://npmjs.com/package/@eslint-react/eslint-plugin)
77

8-
A series of composable ESLint rules for React and friends.
8+
A series of future-proof ESLint rules for React and friends.
99

1010
## Features
1111

12-
- **Modern**: First-class support for TypeScript, React 19, and more.
13-
- **Flexible**: Increased flexibility with more granular severity control.
14-
- **Performant**: Built with performance in mind, optimized for large codebases.
15-
- **Comprehensive**: Handles complex scenarios and identifies problems that other tools might miss.
12+
- ⚡️ **Modern**: First-class support for TypeScript, React 19, and more.
13+
- 🎛️ **Flexible**: Increased flexibility with more granular severity control.
14+
- 🚀 **Performant**: Built with performance in mind, optimized for large codebases.
15+
- 🔍 **Comprehensive**: Handles complex scenarios and identifies problems that other tools might miss.
1616

1717
## Public Packages
1818

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.42.2-beta.4
1+
1.42.2-next.5

apps/website/app/(home)/page.tsx

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import { ESLintReact } from "#/components/ESLintReact";
2-
32
import { Card, Cards } from "fumadocs-ui/components/card";
3+
import { Gauge, SearchCheck, Sliders, Zap } from "lucide-react";
44
import { Link } from "next-view-transitions";
55

66
const features = [
7-
["Modern", "First-class support for TypeScript, React 19, and more."],
8-
["Flexible", "Increased flexibility with more granular severity control."],
9-
["Performant", "Built with performance in mind, optimized for large codebases."],
10-
["Comprehensive", "Handles complex scenarios and identifies problems that other tools might miss."],
7+
["Modern", "First-class support for TypeScript, React 19, and more.", Zap],
8+
["Flexible", "Increased flexibility with more granular severity control.", Sliders],
9+
["Performant", "Built with performance in mind, optimized for large codebases.", Gauge],
10+
["Comprehensive", "Identifies problems that other tools might miss.", SearchCheck],
1111
] as const;
1212

1313
export default function HomePage() {
@@ -16,11 +16,18 @@ export default function HomePage() {
1616
<ESLintReact />
1717
<article className="prose max-w-none">
1818
<p className="text-center">
19-
A series of composable ESLint rules for React and friends.
19+
A series of future-proof ESLint rules for React and friends.
2020
</p>
2121
<h2>Features</h2>
2222
<Cards className="grid grid-cols-1 gap-4 md:grid-cols-2 lg:grid-cols-4">
23-
{features.map(([title, description]) => <Card description={description} key={title} title={title} />)}
23+
{features.map(([title, description, Icon]) => (
24+
<Card
25+
description={description}
26+
icon={<Icon />}
27+
key={title}
28+
title={title}
29+
/>
30+
))}
2431
</Cards>
2532
<h2>Roadmap</h2>
2633
<p>

apps/website/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const ibm_plex_mono = IBM_Plex_Mono({
1616
});
1717

1818
export const metadata = {
19-
description: "A series of composable ESLint rules for React and friends.",
19+
description: "A series of future-proof ESLint rules for React and friends.",
2020
title: {
2121
default: "ESLint React",
2222
template: "%s | ESLint React",

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.42.2-beta.4",
3+
"version": "1.42.2-next.5",
44
"private": true,
55
"description": "Monorepo for eslint-plugin-react-[x, dom, web-api, hooks-extra, naming-convention].",
66
"keywords": [

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.42.2-beta.4",
3+
"version": "1.42.2-next.5",
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.42.2-beta.4",
3+
"version": "1.42.2-next.5",
44
"description": "ESLint React's ESLint plugin for debugging related rules.",
55
"keywords": [
66
"react",

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.42.2-beta.4",
3+
"version": "1.42.2-next.5",
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.42.2-beta.4",
3+
"version": "1.42.2-next.5",
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.42.2-beta.4",
3+
"version": "1.42.2-next.5",
44
"description": "ESLint React's ESLint plugin for naming convention related rules.",
55
"keywords": [
66
"react",

0 commit comments

Comments
 (0)