Skip to content

Commit 69d7066

Browse files
committed
release: 2.0.0-next.44
2 parents 8524f3d + 84dae90 commit 69d7066

File tree

80 files changed

+1047
-854
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+1047
-854
lines changed

.pkgs/configs/eslint.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export const typescript = tseslint.config({
9898
pluginJsdoc.configs["flat/recommended-typescript-error"],
9999
pluginRegexp.configs["flat/recommended"],
100100
pluginPerfectionist.configs["recommended-natural"],
101-
],
101+
], // TODO: Fix type error in plugin configs
102102
files: GLOB_TS,
103103
plugins: {
104104
["@stylistic"]: stylistic,

.pkgs/configs/eslint.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export const typescript: ConfigArray = tseslint.config(
110110
pluginJsdoc.configs["flat/recommended-typescript-error"],
111111
pluginRegexp.configs["flat/recommended"],
112112
pluginPerfectionist.configs["recommended-natural"],
113-
],
113+
] as never[], // TODO: Fix type error in plugin configs
114114
files: GLOB_TS,
115115
plugins: {
116116
["@stylistic"]: stylistic,

.pkgs/configs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
"lint:ts": "tsc --noEmit"
2020
},
2121
"dependencies": {
22-
"@eslint/js": "^9.28.0",
22+
"@eslint/js": "^9.29.0",
2323
"@stylistic/eslint-plugin": "^4.4.1",
2424
"eslint-plugin-de-morgan": "^1.3.0",
2525
"eslint-plugin-function": "^0.0.22",
26-
"eslint-plugin-jsdoc": "^50.8.0",
26+
"eslint-plugin-jsdoc": "^51.0.1",
2727
"eslint-plugin-perfectionist": "^4.14.0",
2828
"eslint-plugin-regexp": "^2.9.0",
2929
"eslint-plugin-unicorn": "^59.0.1",

.pkgs/eslint-plugin-local/dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as AST from '@eslint-react/ast';
22
import { ESLintUtils, AST_NODE_TYPES } from '@typescript-eslint/utils';
3-
import { _ } from '@eslint-react/eff';
3+
import { unit } from '@eslint-react/eff';
44
import { findVariable } from '@eslint-react/var';
55
import { AST_NODE_TYPES as AST_NODE_TYPES$1 } from '@typescript-eslint/types';
66
import { nullThrows, NullThrowsReasons } from '@typescript-eslint/utils/eslint-utils';
@@ -44,7 +44,7 @@ function getRequireExpressionArguments(node) {
4444
return getRequireExpressionArguments(node.object);
4545
}
4646
}
47-
return _;
47+
return unit;
4848
}
4949

5050
// src/rules/avoid-multiline-template-expression.ts

.pkgs/eslint-plugin-local/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
"@eslint-react/kit": "workspace:*",
2727
"@eslint-react/shared": "workspace:*",
2828
"@eslint-react/var": "workspace:*",
29-
"@eslint/js": "^9.28.0",
29+
"@eslint/js": "^9.29.0",
3030
"@stylistic/eslint-plugin": "^4.4.1",
3131
"@typescript-eslint/scope-manager": "^8.34.0",
3232
"@typescript-eslint/type-utils": "^8.34.0",
3333
"@typescript-eslint/types": "^8.34.0",
3434
"@typescript-eslint/utils": "^8.34.0",
3535
"eslint-plugin-de-morgan": "^1.3.0",
36-
"eslint-plugin-jsdoc": "^50.8.0",
36+
"eslint-plugin-jsdoc": "^51.0.1",
3737
"eslint-plugin-perfectionist": "^4.14.0",
3838
"eslint-plugin-regexp": "^2.9.0",
3939
"eslint-plugin-unicorn": "^59.0.1",
@@ -47,7 +47,7 @@
4747
"tsup": "^8.5.0"
4848
},
4949
"peerDependencies": {
50-
"eslint": "^9.28.0",
50+
"eslint": "^9.29.0",
5151
"typescript": "^4.9.5 || ^5.4.5"
5252
},
5353
"engines": {

.pkgs/eslint-plugin-local/src/utils/is-initialized-from-source.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Scope } from "@typescript-eslint/scope-manager";
22
import type { TSESTree } from "@typescript-eslint/types";
33
import * as AST from "@eslint-react/ast";
4-
import { _ } from "@eslint-react/eff";
4+
import { unit } from "@eslint-react/eff";
55
import { findVariable } from "@eslint-react/var";
66
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
77

@@ -46,7 +46,7 @@ export function isInitializedFromSource(
4646
return parent?.type === T.ImportDeclaration && parent.source.value === source;
4747
}
4848

49-
function getRequireExpressionArguments(node: TSESTree.Node): TSESTree.CallExpressionArgument[] | _ {
49+
function getRequireExpressionArguments(node: TSESTree.Node): TSESTree.CallExpressionArgument[] | unit {
5050
switch (true) {
5151
// require('source')
5252
case node.type === T.CallExpression
@@ -59,5 +59,5 @@ function getRequireExpressionArguments(node: TSESTree.Node): TSESTree.CallExpres
5959
return getRequireExpressionArguments(node.object);
6060
}
6161
}
62-
return _;
62+
return unit;
6363
}

VERSION

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const features = [
88
["Flexible", "Fully customizable rule severity levels, allowing you to enforce or relax rules as needed.", Sliders],
99
[
1010
"Performant",
11-
"Built with performance in mind, optimized for large codebases, **4-7x faster** than other ESLint plugins.",
11+
"Built with performance in mind, optimized for large codebases, 4-7x faster than other ESLint plugins.",
1212
Gauge,
1313
],
1414
[

apps/website/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
"@eslint-react/eff": "workspace:*",
1515
"bsky-react-post": "^0.1.7",
1616
"clsx": "^2.1.1",
17-
"fumadocs-core": "15.5.0",
18-
"fumadocs-docgen": "2.0.0",
19-
"fumadocs-mdx": "11.6.6",
20-
"fumadocs-twoslash": "3.1.3",
21-
"fumadocs-typescript": "4.0.5",
22-
"fumadocs-ui": "15.5.0",
23-
"lucide-react": "^0.514.0",
17+
"fumadocs-core": "15.5.2",
18+
"fumadocs-docgen": "2.0.1",
19+
"fumadocs-mdx": "11.6.8",
20+
"fumadocs-twoslash": "3.1.4",
21+
"fumadocs-typescript": "4.0.6",
22+
"fumadocs-ui": "15.5.2",
23+
"lucide-react": "^0.515.0",
2424
"next": "^15.3.3",
2525
"next-view-transitions": "^0.3.4",
2626
"react": "^19.1.0",
@@ -33,7 +33,7 @@
3333
"@eslint-react/eslint-plugin": "workspace:*",
3434
"@eslint-react/kit": "workspace:*",
3535
"@eslint-react/shared": "workspace:*",
36-
"@eslint/js": "^9.28.0",
36+
"@eslint/js": "^9.29.0",
3737
"@eslint/markdown": "^6.5.0",
3838
"@local/configs": "workspace:*",
3939
"@mdx-js/mdx": "^3.1.0",
@@ -49,7 +49,7 @@
4949
"@types/react-dom": "^19.1.6",
5050
"autoprefixer": "^10.4.21",
5151
"dedent": "^1.6.0",
52-
"eslint": "^9.28.0",
52+
"eslint": "^9.29.0",
5353
"eslint-plugin-de-morgan": "^1.3.0",
5454
"eslint-plugin-import-x": "^4.15.2",
5555
"eslint-plugin-perfectionist": "^4.14.0",

dprint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"packages/**/docs"
2626
],
2727
"plugins": [
28-
"https://plugins.dprint.dev/typescript-0.95.4.wasm",
28+
"https://plugins.dprint.dev/typescript-0.95.7.wasm",
2929
"https://plugins.dprint.dev/json-0.20.0.wasm",
3030
"https://plugins.dprint.dev/markdown-0.18.0.wasm",
3131
"https://plugins.dprint.dev/toml-0.7.0.wasm",

0 commit comments

Comments
 (0)