Skip to content

Commit 736debf

Browse files
Bump @vitest/eslint-plugin from 1.1.40 to 1.1.42 (#860)
Co-authored-by: Flo Edelmann <git@flo-edelmann.de>
1 parent a5d1f9e commit 736debf

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

eslint.config.mts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,5 +151,10 @@ export default typescriptEslint.config(
151151
'@typescript-eslint/no-unsafe-assignment': 'off',
152152
'@typescript-eslint/no-unsafe-call': 'off',
153153
},
154+
settings: {
155+
vitest: {
156+
typecheck: true,
157+
},
158+
},
154159
},
155160
);

package-lock.json

Lines changed: 5 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"devDependencies": {
4848
"@eslint/js": "^9.24.0",
4949
"@types/eslint-config-prettier": "^6.11.3",
50-
"@vitest/eslint-plugin": "^1.1.40",
50+
"@vitest/eslint-plugin": "^1.1.42",
5151
"eslint": "^9.24.0",
5252
"eslint-config-prettier": "^10.1.2",
5353
"eslint-plugin-package-json": "^0.29.1",

tests/validators/isInstanceOf.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { describe, expect, it } from 'vitest';
22
import { isInstanceOf } from '../../src/validators/isInstanceOf';
33

4-
describe('isInstanceOf', () => {
4+
describe(isInstanceOf, () => {
55
class User {}
66

77
it('returns undefined if value is instance', () => {

tests/validators/isOneOf.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { describe, expect, it } from 'vitest';
22
import { isOneOf } from '../../src/validators/isOneOf';
33

4-
describe('isOneOf', () => {
4+
describe(isOneOf, () => {
55
const validator = isOneOf(['foo', 27, undefined]);
66

77
it('returns undefined if value is included', () => {

0 commit comments

Comments
 (0)