Skip to content

Commit 26c3d44

Browse files
committed
Update dependencies
1 parent aae348e commit 26c3d44

File tree

11 files changed

+117
-111
lines changed

11 files changed

+117
-111
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
},
1515
"packageManager": "pnpm@10.33.0",
1616
"devDependencies": {
17-
"@standard-config/eslint": "^2.0.1",
17+
"@standard-config/eslint": "^2.0.2",
1818
"@standard-config/oxlint": "workspace:*",
19-
"@standard-config/prettier": "^1.11.2",
19+
"@standard-config/prettier": "^1.11.3",
2020
"@standard-config/tsconfig": "catalog:",
2121
"@vitest/coverage-v8": "^4.1.2",
2222
"eslint": "^10.1.0",

packages/oxlint-react/src/config-test-files/__snapshots__/index.test.ts.snap

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ exports[`is a valid Oxlint config override 1`] = `
1111
"jsx-a11y/heading-has-content": "off",
1212
"jsx-a11y/html-has-lang": "off",
1313
"jsx-a11y/iframe-has-title": "off",
14-
"jsx-a11y/jsx-no-target-blank": "off",
1514
"jsx-a11y/label-has-associated-control": "off",
1615
"jsx-a11y/lang": "off",
1716
"jsx-a11y/mouse-events-have-key-events": "off",

packages/oxlint-react/src/config-test-files/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ const config: LinterConfigOverrideEntry = {
1010
'jsx-a11y/heading-has-content': 'off',
1111
'jsx-a11y/html-has-lang': 'off',
1212
'jsx-a11y/iframe-has-title': 'off',
13-
'jsx-a11y/jsx-no-target-blank': 'off',
1413
'jsx-a11y/label-has-associated-control': 'off',
1514
'jsx-a11y/lang': 'off',
1615
'jsx-a11y/mouse-events-have-key-events': 'off',

packages/oxlint/src/config-base/__snapshots__/index.test.ts.snap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -621,6 +621,7 @@ exports[`is a valid Oxlint config 1`] = `
621621
"vitest/prefer-import-in-mock": "off",
622622
"vitest/prefer-to-be-falsy": "off",
623623
"vitest/prefer-to-be-truthy": "off",
624+
"vitest/require-mock-type-parameters": "off",
624625
},
625626
"settings": {
626627
"vitest": {

packages/oxlint/src/config-base/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -506,6 +506,7 @@ const config: LinterConfigEntry = {
506506
'vitest/prefer-import-in-mock': 'off',
507507
'vitest/prefer-to-be-falsy': 'off',
508508
'vitest/prefer-to-be-truthy': 'off',
509+
'vitest/require-mock-type-parameters': 'off',
509510
},
510511
};
511512

packages/oxlint/src/config-test-files/__snapshots__/index.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ exports[`is a valid Oxlint config override 1`] = `
5454
"jsx-a11y/heading-has-content": "off",
5555
"jsx-a11y/html-has-lang": "off",
5656
"jsx-a11y/iframe-has-title": "off",
57-
"jsx-a11y/jsx-no-target-blank": "off",
5857
"jsx-a11y/label-has-associated-control": "off",
5958
"jsx-a11y/lang": "off",
6059
"jsx-a11y/mouse-events-have-key-events": "off",
@@ -123,6 +122,7 @@ exports[`is a valid Oxlint config override 1`] = `
123122
"vitest/prefer-strict-boolean-matchers": "error",
124123
"vitest/prefer-to-be-object": "error",
125124
"vitest/require-local-test-context-for-concurrent-snapshots": "error",
125+
"vitest/require-test-timeout": "off",
126126
"vitest/warn-todo": "warn",
127127
},
128128
}

packages/oxlint/src/config-test-files/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ const config: LinterConfigOverrideEntry = mergeConfig(configReactTestFiles, {
9595
'vitest/prefer-strict-boolean-matchers': 'error',
9696
'vitest/prefer-to-be-object': 'error',
9797
'vitest/require-local-test-context-for-concurrent-snapshots': 'error',
98+
'vitest/require-test-timeout': 'off',
9899
'vitest/warn-todo': 'warn',
99100
},
100101
});

packages/oxlint/src/define-config/__snapshots__/index.test.ts.snap

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ exports[`defines a valid Oxlint config 1`] = `
9393
"jsx-a11y/heading-has-content": "off",
9494
"jsx-a11y/html-has-lang": "off",
9595
"jsx-a11y/iframe-has-title": "off",
96-
"jsx-a11y/jsx-no-target-blank": "off",
9796
"jsx-a11y/label-has-associated-control": "off",
9897
"jsx-a11y/lang": "off",
9998
"jsx-a11y/mouse-events-have-key-events": "off",
@@ -162,6 +161,7 @@ exports[`defines a valid Oxlint config 1`] = `
162161
"vitest/prefer-strict-boolean-matchers": "error",
163162
"vitest/prefer-to-be-object": "error",
164163
"vitest/require-local-test-context-for-concurrent-snapshots": "error",
164+
"vitest/require-test-timeout": "off",
165165
"vitest/warn-todo": "warn",
166166
},
167167
},
@@ -787,6 +787,7 @@ exports[`defines a valid Oxlint config 1`] = `
787787
"vitest/prefer-import-in-mock": "off",
788788
"vitest/prefer-to-be-falsy": "off",
789789
"vitest/prefer-to-be-truthy": "off",
790+
"vitest/require-mock-type-parameters": "off",
790791
},
791792
"settings": {
792793
"vitest": {
@@ -889,7 +890,6 @@ exports[`supports the \`react\` option 1`] = `
889890
"jsx-a11y/heading-has-content": "off",
890891
"jsx-a11y/html-has-lang": "off",
891892
"jsx-a11y/iframe-has-title": "off",
892-
"jsx-a11y/jsx-no-target-blank": "off",
893893
"jsx-a11y/label-has-associated-control": "off",
894894
"jsx-a11y/lang": "off",
895895
"jsx-a11y/mouse-events-have-key-events": "off",
@@ -958,6 +958,7 @@ exports[`supports the \`react\` option 1`] = `
958958
"vitest/prefer-strict-boolean-matchers": "error",
959959
"vitest/prefer-to-be-object": "error",
960960
"vitest/require-local-test-context-for-concurrent-snapshots": "error",
961+
"vitest/require-test-timeout": "off",
961962
"vitest/warn-todo": "warn",
962963
},
963964
},
@@ -1695,6 +1696,7 @@ exports[`supports the \`react\` option 1`] = `
16951696
"vitest/prefer-import-in-mock": "off",
16961697
"vitest/prefer-to-be-falsy": "off",
16971698
"vitest/prefer-to-be-truthy": "off",
1699+
"vitest/require-mock-type-parameters": "off",
16981700
},
16991701
"settings": {
17001702
"vitest": {

0 commit comments

Comments
 (0)