Skip to content

Commit 1273767

Browse files
committed
release: 0.9.8-beta.2
1 parent 033cda8 commit 1273767

File tree

29 files changed

+126
-38
lines changed

29 files changed

+126
-38
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## v0.9.8-beta.2 (Tue Dec 19 2023)
2+
3+
### Release Notes
4+
5+
Optimize `recommended` and `recommended-legacy` presets.
6+
7+
---
8+
9+
🚀 Enhancement
10+
11+
- `@eslint-react/eslint-plugin`
12+
- Optimize `recommended` and `recommended-legacy` presets.
13+
14+
#### Authors: 1
15+
16+
- Eva1ent ([@Rel1cx](https://github.com/Rel1cx))
17+
18+
---
19+
120
## v0.9.8-beta.1 (Tue Dec 19 2023)
221

322
### Release Notes

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.8-beta.1
1+
0.9.8-beta.2

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": "0.9.8-beta.1",
3+
"version": "0.9.8-beta.2",
44
"description": "ESLint React's monorepo. More than 50 ESLint rules to catch common mistakes and improve your React code. Built (mostly) from scratch.",
55
"keywords": [
66
"eslint",
@@ -70,7 +70,7 @@
7070
"@typescript-eslint/rule-tester": "6.15.0",
7171
"@vitest/ui": "1.0.4",
7272
"bun": "1.0.18",
73-
"bun-types": "1.0.18-1",
73+
"bun-types": "1.0.18-canary.20231218T214637",
7474
"cspell": "8.1.3",
7575
"dedent": "1.5.1",
7676
"dprint": "0.44.0",

packages/ast/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/ast",
3-
"version": "0.9.8-beta.1",
3+
"version": "0.9.8-beta.2",
44
"description": "ESLint React's TSESTree AST primitive utility module.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

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": "0.9.8-beta.1",
3+
"version": "0.9.8-beta.2",
44
"description": "ESLint React's ESLint utility module for static analysis of React core API and Patterns.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

packages/core/src/api/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { TSESTree } from "@typescript-eslint/types";
33

44
import { isReactAPI, isReactAPICall } from "../internal";
55

6-
// workaround for @typescript-eslint/utils's TS2742 error.
6+
// Workaround for @typescript-eslint/utils's TS2742 error.
77
type A = (node: TSESTree.Identifier | TSESTree.MemberExpression, context: RuleContext) => boolean;
88
type B = (node: TSESTree.MemberExpression, context: RuleContext, pragma?: string) => boolean;
99
type X = (node: TSESTree.CallExpression, context: RuleContext) => boolean;

packages/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": "0.9.8-beta.1",
3+
"version": "0.9.8-beta.2",
44
"description": "ESLint React's ESLint plugin for debugging related rules.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

packages/eslint-plugin-debug/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// workaround for @typescript-eslint/utils's TS2742 error.
1+
// Workaround for @typescript-eslint/utils's TS2742 error.
22
import type { ESLintUtils } from "@typescript-eslint/utils";
33

44
import { name, version } from "../package.json";

packages/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": "0.9.8-beta.1",
3+
"version": "0.9.8-beta.2",
44
"description": "ESLint React's ESLint plugin for JSX related rules.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

packages/eslint-plugin-jsx/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// workaround for @typescript-eslint/utils's TS2742 error.
1+
// Workaround for @typescript-eslint/utils's TS2742 error.
22
import type { ESLintUtils } from "@typescript-eslint/utils";
33

44
import { name, version } from "../package.json";

0 commit comments

Comments
 (0)