Skip to content

Commit 9cf5c03

Browse files
committed
release: 2.0.0-next.45
2 parents 69d7066 + 98897b9 commit 9cf5c03

File tree

22 files changed

+379
-379
lines changed

22 files changed

+379
-379
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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+
4-7x faster composable ESLint rules for React and friends.
99

1010
## Table of Contents
1111

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0-next.44
1+
2.0.0-next.45

apps/website/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const themeOptions = {
2323
};
2424

2525
export const metadata = {
26-
description: "A series of composable ESLint rules for React and friends.",
26+
description: "4-7x faster composable ESLint rules for React and friends.",
2727
title: {
2828
default: "ESLint React",
2929
template: "%s | ESLint React",

apps/website/components/ESLintReact.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export function ESLintReact() {
99
<Image alt="logo" height="150" quality={100} src={logo as StaticImageData} width="150" />
1010
<span className="text-2xl">ESLint React</span>
1111
<p className="text-center text-(--color-fd-prose-body) pt-4">
12-
A series of composable ESLint rules for React and friends.
12+
4-7x faster composable ESLint rules for React and friends.
1313
</p>
1414
</div>
1515
);

eslint.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import markdown from "@eslint/markdown";
44
import * as configs from "@local/configs/eslint";
55
import pluginLocal from "@local/eslint-plugin-local";
66
import gitIgnores from "eslint-config-flat-gitignore";
7+
import * as pluginFastImport from "eslint-plugin-fast-import";
78
import pluginVitest from "eslint-plugin-vitest";
89
import { globalIgnores } from "eslint/config";
910
import tseslint from "typescript-eslint";
@@ -56,6 +57,7 @@ export default tseslint.config(
5657
extends: [
5758
...tseslint.configs.strictTypeChecked,
5859
configs.typescript,
60+
pluginFastImport.recommended({ rootDir: dirname }),
5961
],
6062
files: GLOB_TS,
6163
languageOptions: {
@@ -75,6 +77,8 @@ export default tseslint.config(
7577
"local/avoid-multiline-template-expression": "warn",
7678
"local/no-shadow-underscore": "error",
7779
"local/prefer-eqeq-nullish-comparison": "warn",
80+
81+
"fast-import/no-unused-exports": "off",
7882
},
7983
},
8084
{

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/monorepo",
3-
"version": "2.0.0-next.44",
3+
"version": "2.0.0-next.45",
44
"private": true,
55
"description": "Monorepo for eslint-plugin-react-[x, dom, web-api, naming-convention].",
66
"keywords": [
@@ -65,12 +65,13 @@
6565
"@typescript-eslint/rule-tester": "^8.34.0",
6666
"@typescript-eslint/types": "^8.34.0",
6767
"ansis": "^4.1.0",
68-
"cspell": "^9.0.2",
68+
"cspell": "^9.1.1",
6969
"dedent": "^1.6.0",
7070
"dprint": "^0.50.0",
7171
"esbuild": "^0.25.5",
7272
"eslint": "^9.29.0",
7373
"eslint-config-flat-gitignore": "^2.1.0",
74+
"eslint-plugin-fast-import": "^1.1.2",
7475
"eslint-plugin-vitest": "^0.5.4",
7576
"jiti": "^2.4.2",
7677
"lefthook": "^1.11.13",

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": "2.0.0-next.44",
3+
"version": "2.0.0-next.45",
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": "2.0.0-next.44",
3+
"version": "2.0.0-next.45",
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": "2.0.0-next.44",
3+
"version": "2.0.0-next.45",
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": "2.0.0-next.44",
3+
"version": "2.0.0-next.45",
44
"description": "ESLint React's ESLint plugin for React Hooks related rules.",
55
"keywords": [
66
"react",

0 commit comments

Comments
 (0)