ultracite 7.4.2 → 7.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/eslint/core/rules/unicorn.mjs +1 -0
- package/config/eslint/vitest/rules/vitest.mjs +7 -0
- package/config/oxlint/core/.oxlintrc.json +1 -0
- package/config/oxlint/vitest/.oxlintrc.json +4 -0
- package/dist/bob-MRQ23J26.svg +1 -0
- package/dist/index.js +39 -39
- package/dist/oxlint.d.ts +24 -16
- package/dist/oxlint.js +1 -1
- package/package.json +15 -15
package/dist/oxlint.d.ts
CHANGED
|
@@ -27,10 +27,10 @@ declare const core: {
|
|
|
27
27
|
"no-undefined": "off";
|
|
28
28
|
"max-lines": "off";
|
|
29
29
|
"id-length": "off";
|
|
30
|
-
"func-style":
|
|
30
|
+
"func-style": ["error", string, {
|
|
31
31
|
allowArrowFunctions: boolean;
|
|
32
|
-
}
|
|
33
|
-
"arrow-body-style": string
|
|
32
|
+
}];
|
|
33
|
+
"arrow-body-style": ["error", string];
|
|
34
34
|
"max-depth": "off";
|
|
35
35
|
"max-params": "off";
|
|
36
36
|
"max-statements": "off";
|
|
@@ -39,12 +39,12 @@ declare const core: {
|
|
|
39
39
|
"no-continue": "off";
|
|
40
40
|
"init-declarations": "off";
|
|
41
41
|
"sort-imports": "off";
|
|
42
|
-
"no-duplicate-imports":
|
|
42
|
+
"no-duplicate-imports": ["error", {
|
|
43
43
|
allowSeparateTypeImports: boolean;
|
|
44
|
-
}
|
|
45
|
-
"no-void":
|
|
44
|
+
}];
|
|
45
|
+
"no-void": ["error", {
|
|
46
46
|
allowAsStatement: boolean;
|
|
47
|
-
}
|
|
47
|
+
}];
|
|
48
48
|
"import/no-relative-parent-imports": "off";
|
|
49
49
|
"import/no-default-export": "off";
|
|
50
50
|
"import/exports-last": "off";
|
|
@@ -57,7 +57,7 @@ declare const core: {
|
|
|
57
57
|
"import/group-exports": "off";
|
|
58
58
|
"import/no-commonjs": "off";
|
|
59
59
|
"import/unambiguous": "off";
|
|
60
|
-
"import/consistent-type-specifier-style": string
|
|
60
|
+
"import/consistent-type-specifier-style": ["error", string];
|
|
61
61
|
"import/no-dynamic-require": "off";
|
|
62
62
|
"import/no-unassigned-import": "off";
|
|
63
63
|
"import/no-nodejs-modules": "off";
|
|
@@ -72,6 +72,9 @@ declare const core: {
|
|
|
72
72
|
"unicorn/no-null": "off";
|
|
73
73
|
"unicorn/prefer-top-level-await": "off";
|
|
74
74
|
"unicorn/prefer-string-raw": "off";
|
|
75
|
+
"unicorn/text-encoding-identifier-case": ["error", {
|
|
76
|
+
withDash: boolean;
|
|
77
|
+
}];
|
|
75
78
|
"typescript/explicit-module-boundary-types": "off";
|
|
76
79
|
"typescript/no-require-imports": "off";
|
|
77
80
|
"typescript/explicit-function-return-type": "off";
|
|
@@ -243,6 +246,7 @@ declare const vitest: {
|
|
|
243
246
|
"vitest/prefer-mock-promise-shorthand": "error";
|
|
244
247
|
"vitest/prefer-spy-on": "error";
|
|
245
248
|
"vitest/prefer-strict-equal": "error";
|
|
249
|
+
"vitest/prefer-strict-boolean-matchers": "off";
|
|
246
250
|
"vitest/prefer-to-be": "error";
|
|
247
251
|
"vitest/prefer-to-be-falsy": "error";
|
|
248
252
|
"vitest/prefer-to-be-object": "error";
|
|
@@ -294,10 +298,10 @@ declare const configs: {
|
|
|
294
298
|
"no-undefined": "off";
|
|
295
299
|
"max-lines": "off";
|
|
296
300
|
"id-length": "off";
|
|
297
|
-
"func-style":
|
|
301
|
+
"func-style": ["error", string, {
|
|
298
302
|
allowArrowFunctions: boolean;
|
|
299
|
-
}
|
|
300
|
-
"arrow-body-style": string
|
|
303
|
+
}];
|
|
304
|
+
"arrow-body-style": ["error", string];
|
|
301
305
|
"max-depth": "off";
|
|
302
306
|
"max-params": "off";
|
|
303
307
|
"max-statements": "off";
|
|
@@ -306,12 +310,12 @@ declare const configs: {
|
|
|
306
310
|
"no-continue": "off";
|
|
307
311
|
"init-declarations": "off";
|
|
308
312
|
"sort-imports": "off";
|
|
309
|
-
"no-duplicate-imports":
|
|
313
|
+
"no-duplicate-imports": ["error", {
|
|
310
314
|
allowSeparateTypeImports: boolean;
|
|
311
|
-
}
|
|
312
|
-
"no-void":
|
|
315
|
+
}];
|
|
316
|
+
"no-void": ["error", {
|
|
313
317
|
allowAsStatement: boolean;
|
|
314
|
-
}
|
|
318
|
+
}];
|
|
315
319
|
"import/no-relative-parent-imports": "off";
|
|
316
320
|
"import/no-default-export": "off";
|
|
317
321
|
"import/exports-last": "off";
|
|
@@ -324,7 +328,7 @@ declare const configs: {
|
|
|
324
328
|
"import/group-exports": "off";
|
|
325
329
|
"import/no-commonjs": "off";
|
|
326
330
|
"import/unambiguous": "off";
|
|
327
|
-
"import/consistent-type-specifier-style": string
|
|
331
|
+
"import/consistent-type-specifier-style": ["error", string];
|
|
328
332
|
"import/no-dynamic-require": "off";
|
|
329
333
|
"import/no-unassigned-import": "off";
|
|
330
334
|
"import/no-nodejs-modules": "off";
|
|
@@ -339,6 +343,9 @@ declare const configs: {
|
|
|
339
343
|
"unicorn/no-null": "off";
|
|
340
344
|
"unicorn/prefer-top-level-await": "off";
|
|
341
345
|
"unicorn/prefer-string-raw": "off";
|
|
346
|
+
"unicorn/text-encoding-identifier-case": ["error", {
|
|
347
|
+
withDash: boolean;
|
|
348
|
+
}];
|
|
342
349
|
"typescript/explicit-module-boundary-types": "off";
|
|
343
350
|
"typescript/no-require-imports": "off";
|
|
344
351
|
"typescript/explicit-function-return-type": "off";
|
|
@@ -510,6 +517,7 @@ declare const configs: {
|
|
|
510
517
|
"vitest/prefer-mock-promise-shorthand": "error";
|
|
511
518
|
"vitest/prefer-spy-on": "error";
|
|
512
519
|
"vitest/prefer-strict-equal": "error";
|
|
520
|
+
"vitest/prefer-strict-boolean-matchers": "off";
|
|
513
521
|
"vitest/prefer-to-be": "error";
|
|
514
522
|
"vitest/prefer-to-be-falsy": "error";
|
|
515
523
|
"vitest/prefer-to-be-object": "error";
|
package/dist/oxlint.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var e=["**/*.{test,spec}.{ts,tsx,js,jsx}","**/__tests__/**/*.{ts,tsx,js,jsx}"],r={rules:{}},o={rules:{}},t={plugins:["eslint","typescript","unicorn","oxc","import","jsdoc","node","promise"],env:{browser:!0},categories:{correctness:"error",perf:"error",restriction:"error",suspicious:"error",pedantic:"error",style:"error"},rules:{"no-await-in-loop":"off","max-lines-per-function":"off","no-implicit-coercion":"off","no-magic-numbers":"off","no-console":"off","no-ternary":"off","no-undefined":"off","max-lines":"off","id-length":"off","func-style":["error","expression",{allowArrowFunctions:!0}],"arrow-body-style":["error","as-needed"],"max-depth":"off","max-params":"off","max-statements":"off","capitalized-comments":"off","new-cap":"off","no-continue":"off","init-declarations":"off","sort-imports":"off","no-duplicate-imports":["error",{allowSeparateTypeImports:!0}],"no-void":["error",{allowAsStatement:!0}],"import/no-relative-parent-imports":"off","import/no-default-export":"off","import/exports-last":"off","import/no-named-export":"off","import/max-dependencies":"off","import/extensions":"off","import/no-namespace":"off","import/no-anonymous-default-export":"off","import/prefer-default-export":"off","import/group-exports":"off","import/no-commonjs":"off","import/unambiguous":"off","import/consistent-type-specifier-style":["error","prefer-top-level"],"import/no-dynamic-require":"off","import/no-unassigned-import":"off","import/no-nodejs-modules":"off","jsdoc/require-param":"off","jsdoc/require-param-type":"off","jsdoc/require-returns":"off","jsdoc/require-returns-type":"off","unicorn/explicit-length-check":"off","unicorn/no-array-callback-reference":"off","unicorn/no-process-exit":"off","unicorn/prefer-global-this":"off","unicorn/no-null":"off","unicorn/prefer-top-level-await":"off","unicorn/prefer-string-raw":"off","typescript/explicit-module-boundary-types":"off","typescript/no-require-imports":"off","typescript/explicit-function-return-type":"off","typescript/no-var-requires":"off","typescript/require-await":"off","node/no-process-env":"off","oxc/no-map-spread":"off","oxc/no-async-await":"off","oxc/no-rest-spread-properties":"off","oxc/no-optional-chaining":"off","promise/catch-or-return":"off","promise/always-return":"off"},overrides:[{files:e,rules:{"no-empty-function":"off","promise/prefer-await-to-then":"off"}}]},s={overrides:[{files:e,plugins:["jest"],rules:{"jest/require-hook":"off","jest/no-conditional-in-test":"off","jest/no-hooks":"off","promise/prefer-await-to-then":"off","no-empty-function":"off","jest/consistent-test-it":"error","jest/expect-expect":"error","jest/max-expects":"error","jest/max-nested-describe":"error","jest/no-alias-methods":"error","jest/no-commented-out-tests":"error","jest/no-conditional-expect":"error","jest/no-confusing-set-timeout":"error","jest/no-deprecated-functions":"error","jest/no-disabled-tests":"error","jest/no-done-callback":"error","jest/no-duplicate-hooks":"error","jest/no-export":"error","jest/no-focused-tests":"error","jest/no-identical-title":"error","jest/no-interpolation-in-snapshots":"error","jest/no-jasmine-globals":"error","jest/no-large-snapshots":"error","jest/no-mocks-import":"error","jest/no-restricted-jest-methods":"error","jest/no-restricted-matchers":"error","jest/no-standalone-expect":"error","jest/no-test-prefixes":"error","jest/no-test-return-statement":"error","jest/no-untyped-mock-factory":"error","jest/padding-around-test-blocks":"error","jest/prefer-called-with":"error","jest/prefer-comparison-matcher":"error","jest/prefer-each":"error","jest/prefer-equality-matcher":"error","jest/prefer-expect-resolves":"error","jest/prefer-hooks-in-order":"error","jest/prefer-hooks-on-top":"error","jest/prefer-jest-mocked":"error","jest/prefer-lowercase-title":"error","jest/prefer-mock-promise-shorthand":"error","jest/prefer-spy-on":"error","jest/prefer-strict-equal":"error","jest/prefer-to-be":"error","jest/prefer-to-contain":"error","jest/prefer-to-have-been-called":"error","jest/prefer-to-have-been-called-times":"error","jest/prefer-to-have-length":"error","jest/prefer-todo":"error","jest/require-to-throw-message":"error","jest/require-top-level-describe":"error","jest/valid-describe-callback":"error","jest/valid-expect":"error","jest/valid-title":"error"}}]},i={rules:{}},n={plugins:["nextjs"],rules:{},overrides:[{files:["**/next-env.d.ts"],rules:{"import/no-unassigned-import":"off"}}]},f={rules:{}},p={plugins:["react","react-perf","jsx-a11y"],rules:{"react/only-export-components":"off","react/jsx-boolean-value":"off","react/react-in-jsx-scope":"off","react/jsx-filename-extension":"off","react/no-unknown-property":"off","react/jsx-props-no-spreading":"off","react/jsx-max-depth":"off","react/no-multi-comp":"off","react-perf/jsx-no-jsx-as-prop":"off","react-perf/jsx-no-new-object-as-prop":"off","react-perf/jsx-no-new-array-as-prop":"off","jsx-a11y/no-autofocus":"off"}},a={overrides:[{files:["**/routeTree.gen.ts"],rules:{"unicorn/filename-case":"off","unicorn/no-abusive-eslint-disable":"off"}}],rules:{}},c={rules:{}},l={rules:{}},u={overrides:[{files:e,plugins:["vitest"],rules:{"no-empty-function":"off","promise/prefer-await-to-then":"off","vitest/consistent-test-filename":"error","vitest/consistent-vitest-vi":"error","vitest/expect-expect":"error","vitest/no-alias-methods":"error","vitest/no-commented-out-tests":"error","vitest/no-conditional-expect":"error","vitest/no-conditional-tests":"error","vitest/no-disabled-tests":"error","vitest/no-duplicate-hooks":"error","vitest/no-focused-tests":"error","vitest/no-identical-title":"error","vitest/no-import-node-test":"error","vitest/no-interpolation-in-snapshots":"error","vitest/no-large-snapshots":"error","vitest/no-mocks-import":"error","vitest/no-restricted-matchers":"error","vitest/no-restricted-vi-methods":"error","vitest/no-standalone-expect":"error","vitest/no-test-prefixes":"error","vitest/no-test-return-statement":"error","vitest/prefer-called-with":"error","vitest/prefer-called-times":"off","vitest/prefer-comparison-matcher":"error","vitest/prefer-each":"error","vitest/prefer-equality-matcher":"error","vitest/prefer-expect-resolves":"error","vitest/prefer-hooks-in-order":"error","vitest/prefer-hooks-on-top":"error","vitest/prefer-lowercase-title":"error","vitest/prefer-mock-promise-shorthand":"error","vitest/prefer-spy-on":"error","vitest/prefer-strict-equal":"error","vitest/prefer-to-be":"error","vitest/prefer-to-be-falsy":"error","vitest/prefer-to-be-object":"error","vitest/prefer-to-be-truthy":"error","vitest/prefer-to-contain":"error","vitest/prefer-to-have-length":"error","vitest/prefer-todo":"error","vitest/require-local-test-context-for-concurrent-snapshots":"error","vitest/require-to-throw-message":"error","vitest/require-top-level-describe":"error","vitest/valid-describe-callback":"error","vitest/valid-expect":"error","vitest/valid-title":"error","vitest/warn-todo":"error"}}]},m={plugins:["vue"],rules:{}},d={angular:r,astro:o,core:t,jest:s,nestjs:i,next:n,qwik:f,react:p,remix:a,solid:c,svelte:l,vitest:u,vue:m};export{r as angular,o as astro,d as configs,t as core,s as jest,i as nestjs,n as next,f as qwik,p as react,a as remix,c as solid,l as svelte,u as vitest,m as vue};
|
|
1
|
+
var e=["**/*.{test,spec}.{ts,tsx,js,jsx}","**/__tests__/**/*.{ts,tsx,js,jsx}"],r={rules:{}},o={rules:{}},t={plugins:["eslint","typescript","unicorn","oxc","import","jsdoc","node","promise"],env:{browser:!0},categories:{correctness:"error",perf:"error",restriction:"error",suspicious:"error",pedantic:"error",style:"error"},rules:{"no-await-in-loop":"off","max-lines-per-function":"off","no-implicit-coercion":"off","no-magic-numbers":"off","no-console":"off","no-ternary":"off","no-undefined":"off","max-lines":"off","id-length":"off","func-style":["error","expression",{allowArrowFunctions:!0}],"arrow-body-style":["error","as-needed"],"max-depth":"off","max-params":"off","max-statements":"off","capitalized-comments":"off","new-cap":"off","no-continue":"off","init-declarations":"off","sort-imports":"off","no-duplicate-imports":["error",{allowSeparateTypeImports:!0}],"no-void":["error",{allowAsStatement:!0}],"import/no-relative-parent-imports":"off","import/no-default-export":"off","import/exports-last":"off","import/no-named-export":"off","import/max-dependencies":"off","import/extensions":"off","import/no-namespace":"off","import/no-anonymous-default-export":"off","import/prefer-default-export":"off","import/group-exports":"off","import/no-commonjs":"off","import/unambiguous":"off","import/consistent-type-specifier-style":["error","prefer-top-level"],"import/no-dynamic-require":"off","import/no-unassigned-import":"off","import/no-nodejs-modules":"off","jsdoc/require-param":"off","jsdoc/require-param-type":"off","jsdoc/require-returns":"off","jsdoc/require-returns-type":"off","unicorn/explicit-length-check":"off","unicorn/no-array-callback-reference":"off","unicorn/no-process-exit":"off","unicorn/prefer-global-this":"off","unicorn/no-null":"off","unicorn/prefer-top-level-await":"off","unicorn/prefer-string-raw":"off","unicorn/text-encoding-identifier-case":["error",{withDash:!0}],"typescript/explicit-module-boundary-types":"off","typescript/no-require-imports":"off","typescript/explicit-function-return-type":"off","typescript/no-var-requires":"off","typescript/require-await":"off","node/no-process-env":"off","oxc/no-map-spread":"off","oxc/no-async-await":"off","oxc/no-rest-spread-properties":"off","oxc/no-optional-chaining":"off","promise/catch-or-return":"off","promise/always-return":"off"},overrides:[{files:e,rules:{"no-empty-function":"off","promise/prefer-await-to-then":"off"}}]},s={overrides:[{files:e,plugins:["jest"],rules:{"jest/require-hook":"off","jest/no-conditional-in-test":"off","jest/no-hooks":"off","promise/prefer-await-to-then":"off","no-empty-function":"off","jest/consistent-test-it":"error","jest/expect-expect":"error","jest/max-expects":"error","jest/max-nested-describe":"error","jest/no-alias-methods":"error","jest/no-commented-out-tests":"error","jest/no-conditional-expect":"error","jest/no-confusing-set-timeout":"error","jest/no-deprecated-functions":"error","jest/no-disabled-tests":"error","jest/no-done-callback":"error","jest/no-duplicate-hooks":"error","jest/no-export":"error","jest/no-focused-tests":"error","jest/no-identical-title":"error","jest/no-interpolation-in-snapshots":"error","jest/no-jasmine-globals":"error","jest/no-large-snapshots":"error","jest/no-mocks-import":"error","jest/no-restricted-jest-methods":"error","jest/no-restricted-matchers":"error","jest/no-standalone-expect":"error","jest/no-test-prefixes":"error","jest/no-test-return-statement":"error","jest/no-untyped-mock-factory":"error","jest/padding-around-test-blocks":"error","jest/prefer-called-with":"error","jest/prefer-comparison-matcher":"error","jest/prefer-each":"error","jest/prefer-equality-matcher":"error","jest/prefer-expect-resolves":"error","jest/prefer-hooks-in-order":"error","jest/prefer-hooks-on-top":"error","jest/prefer-jest-mocked":"error","jest/prefer-lowercase-title":"error","jest/prefer-mock-promise-shorthand":"error","jest/prefer-spy-on":"error","jest/prefer-strict-equal":"error","jest/prefer-to-be":"error","jest/prefer-to-contain":"error","jest/prefer-to-have-been-called":"error","jest/prefer-to-have-been-called-times":"error","jest/prefer-to-have-length":"error","jest/prefer-todo":"error","jest/require-to-throw-message":"error","jest/require-top-level-describe":"error","jest/valid-describe-callback":"error","jest/valid-expect":"error","jest/valid-title":"error"}}]},i={rules:{}},n={plugins:["nextjs"],rules:{},overrides:[{files:["**/next-env.d.ts"],rules:{"import/no-unassigned-import":"off"}}]},f={rules:{}},p={plugins:["react","react-perf","jsx-a11y"],rules:{"react/only-export-components":"off","react/jsx-boolean-value":"off","react/react-in-jsx-scope":"off","react/jsx-filename-extension":"off","react/no-unknown-property":"off","react/jsx-props-no-spreading":"off","react/jsx-max-depth":"off","react/no-multi-comp":"off","react-perf/jsx-no-jsx-as-prop":"off","react-perf/jsx-no-new-object-as-prop":"off","react-perf/jsx-no-new-array-as-prop":"off","jsx-a11y/no-autofocus":"off"}},a={overrides:[{files:["**/routeTree.gen.ts"],rules:{"unicorn/filename-case":"off","unicorn/no-abusive-eslint-disable":"off"}}],rules:{}},c={rules:{}},l={rules:{}},u={overrides:[{files:e,plugins:["vitest"],rules:{"no-empty-function":"off","promise/prefer-await-to-then":"off","vitest/consistent-test-filename":"error","vitest/consistent-vitest-vi":"error","vitest/expect-expect":"error","vitest/no-alias-methods":"error","vitest/no-commented-out-tests":"error","vitest/no-conditional-expect":"error","vitest/no-conditional-tests":"error","vitest/no-disabled-tests":"error","vitest/no-duplicate-hooks":"error","vitest/no-focused-tests":"error","vitest/no-identical-title":"error","vitest/no-import-node-test":"error","vitest/no-interpolation-in-snapshots":"error","vitest/no-large-snapshots":"error","vitest/no-mocks-import":"error","vitest/no-restricted-matchers":"error","vitest/no-restricted-vi-methods":"error","vitest/no-standalone-expect":"error","vitest/no-test-prefixes":"error","vitest/no-test-return-statement":"error","vitest/prefer-called-with":"error","vitest/prefer-called-times":"off","vitest/prefer-comparison-matcher":"error","vitest/prefer-each":"error","vitest/prefer-equality-matcher":"error","vitest/prefer-expect-resolves":"error","vitest/prefer-hooks-in-order":"error","vitest/prefer-hooks-on-top":"error","vitest/prefer-lowercase-title":"error","vitest/prefer-mock-promise-shorthand":"error","vitest/prefer-spy-on":"error","vitest/prefer-strict-equal":"error","vitest/prefer-strict-boolean-matchers":"off","vitest/prefer-to-be":"error","vitest/prefer-to-be-falsy":"error","vitest/prefer-to-be-object":"error","vitest/prefer-to-be-truthy":"error","vitest/prefer-to-contain":"error","vitest/prefer-to-have-length":"error","vitest/prefer-todo":"error","vitest/require-local-test-context-for-concurrent-snapshots":"error","vitest/require-to-throw-message":"error","vitest/require-top-level-describe":"error","vitest/valid-describe-callback":"error","vitest/valid-expect":"error","vitest/valid-title":"error","vitest/warn-todo":"error"}}]},m={plugins:["vue"],rules:{}},d={angular:r,astro:o,core:t,jest:s,nestjs:i,next:n,qwik:f,react:p,remix:a,solid:c,svelte:l,vitest:u,vue:m};export{r as angular,o as astro,d as configs,t as core,s as jest,i as nestjs,n as next,f as qwik,p as react,a as remix,c as solid,l as svelte,u as vitest,m as vue};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ultracite",
|
|
3
|
-
"version": "7.4.
|
|
3
|
+
"version": "7.4.4",
|
|
4
4
|
"description": "The AI-ready formatter that helps you write and generate code faster.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"biome",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"test:coverage": "bun test --coverage"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@clack/prompts": "^1.
|
|
53
|
+
"@clack/prompts": "^1.2.0",
|
|
54
54
|
"commander": "^14.0.3",
|
|
55
55
|
"cross-spawn": "^7.0.6",
|
|
56
56
|
"deepmerge": "^4.3.1",
|
|
@@ -59,22 +59,22 @@
|
|
|
59
59
|
"nypm": "^0.6.5"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@biomejs/biome": "2.4.
|
|
62
|
+
"@biomejs/biome": "2.4.10",
|
|
63
63
|
"@eslint/js": "^10.0.1",
|
|
64
|
-
"@next/eslint-plugin-next": "^16.2.
|
|
64
|
+
"@next/eslint-plugin-next": "^16.2.3",
|
|
65
65
|
"@repo/data": "workspace:*",
|
|
66
|
-
"@tanstack/eslint-plugin-query": "^5.
|
|
66
|
+
"@tanstack/eslint-plugin-query": "^5.96.2",
|
|
67
67
|
"@types/cross-spawn": "^6.0.6",
|
|
68
|
-
"@types/node": "^25.5.
|
|
69
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
70
|
-
"@typescript-eslint/parser": "^8.
|
|
71
|
-
"@vitest/eslint-plugin": "^1.6.
|
|
68
|
+
"@types/node": "^25.5.2",
|
|
69
|
+
"@typescript-eslint/eslint-plugin": "^8.58.1",
|
|
70
|
+
"@typescript-eslint/parser": "^8.58.1",
|
|
71
|
+
"@vitest/eslint-plugin": "^1.6.15",
|
|
72
72
|
"eslint-config-prettier": "^10.1.8",
|
|
73
73
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
74
74
|
"eslint-plugin-angular": "^5.0.0",
|
|
75
|
-
"eslint-plugin-astro": "^1.
|
|
75
|
+
"eslint-plugin-astro": "^1.7.0",
|
|
76
76
|
"eslint-plugin-compat": "^7.0.1",
|
|
77
|
-
"eslint-plugin-cypress": "^6.
|
|
77
|
+
"eslint-plugin-cypress": "^6.3.0",
|
|
78
78
|
"eslint-plugin-github": "6.0.0",
|
|
79
79
|
"eslint-plugin-html": "^8.1.4",
|
|
80
80
|
"eslint-plugin-import-x": "^4.16.2",
|
|
@@ -89,13 +89,13 @@
|
|
|
89
89
|
"eslint-plugin-remix": "^1.1.1",
|
|
90
90
|
"eslint-plugin-solid": "^0.14.5",
|
|
91
91
|
"eslint-plugin-sonarjs": "^4.0.2",
|
|
92
|
-
"eslint-plugin-storybook": "^10.3.
|
|
93
|
-
"eslint-plugin-svelte": "^3.
|
|
94
|
-
"eslint-plugin-unicorn": "^
|
|
92
|
+
"eslint-plugin-storybook": "^10.3.5",
|
|
93
|
+
"eslint-plugin-svelte": "^3.17.0",
|
|
94
|
+
"eslint-plugin-unicorn": "^64.0.0",
|
|
95
95
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
96
96
|
"eslint-plugin-vue": "^10.8.0",
|
|
97
97
|
"globals": "^17.4.0",
|
|
98
|
-
"oxlint": "^1.
|
|
98
|
+
"oxlint": "^1.59.0",
|
|
99
99
|
"prettier-plugin-svelte": "^3.5.1",
|
|
100
100
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
101
101
|
"stylelint-config-idiomatic-order": "^10.0.0",
|