Skip to content

Commit 03d63cf

Browse files
committed
Bump eslint-config-wojtekmaj from 0.8.2 to 0.8.3
1 parent ed1d9df commit 03d63cf

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"license": "MIT",
3434
"devDependencies": {
3535
"eslint": "^8.26.0",
36-
"eslint-config-wojtekmaj": "^0.8.2",
36+
"eslint-config-wojtekmaj": "^0.8.3",
3737
"husky": "^8.0.0",
3838
"prettier": "^2.7.0",
3939
"pretty-quick": "^3.1.0",

src/filter.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ describe('asyncFilter()', () => {
9191

9292
it('returns type T[] given function that returns type Promise<boolean>', async () => {
9393
// @ts-expect-no-error
94+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
9495
const result: number[] = await asyncFilter(inputArr, largerThanTwoInRandomTime);
9596
});
9697

@@ -104,6 +105,7 @@ describe('asyncFilter()', () => {
104105
}
105106

106107
// @ts-expect-no-error
108+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
107109
const result: never[] = await asyncFilter(inputArr, falseInRandomTime);
108110
});
109111
});

src/filter_strict.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ describe('asyncFilterStrict()', () => {
120120

121121
it('returns type T[] given function that returns type Promise<boolean>', async () => {
122122
// @ts-expect-no-error
123+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
123124
const result: number[] = await asyncFilterStrict(inputArr, largerThanTwoInRandomTime);
124125
});
125126

@@ -133,6 +134,7 @@ describe('asyncFilterStrict()', () => {
133134
}
134135

135136
// @ts-expect-no-error
137+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
136138
const result: never[] = await asyncFilterStrict(inputArr, falseInRandomTime);
137139
});
138140
});

yarn.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ __metadata:
516516
resolution: "@wojtekmaj/async-array-utils@workspace:."
517517
dependencies:
518518
eslint: ^8.26.0
519-
eslint-config-wojtekmaj: ^0.8.2
519+
eslint-config-wojtekmaj: ^0.8.3
520520
husky: ^8.0.0
521521
prettier: ^2.7.0
522522
pretty-quick: ^3.1.0
@@ -1343,9 +1343,9 @@ __metadata:
13431343
languageName: node
13441344
linkType: hard
13451345

1346-
"eslint-config-wojtekmaj@npm:^0.8.2":
1347-
version: 0.8.2
1348-
resolution: "eslint-config-wojtekmaj@npm:0.8.2"
1346+
"eslint-config-wojtekmaj@npm:^0.8.3":
1347+
version: 0.8.3
1348+
resolution: "eslint-config-wojtekmaj@npm:0.8.3"
13491349
dependencies:
13501350
"@typescript-eslint/eslint-plugin": ^5.41.0
13511351
"@typescript-eslint/parser": ^5.44.0
@@ -1355,7 +1355,7 @@ __metadata:
13551355
eslint-plugin-react-hooks: ^4.3.0
13561356
peerDependencies:
13571357
eslint: ^7.0.0 || ^8.0.0
1358-
checksum: f9bf504bb3a6e4d6f4a9ca99297fdb4ffffa14c0c912fa866876dcc54ffef078bcb930b6639230e222f51ba2cadd06509858ad929b72e5662a3f3d67d126c658
1358+
checksum: 100612b75955d7e7e0d6c2832800b14108cede4d4e0cd7f4ffbfe588ae20c385bd345ce18267f43c7af583deb9220f46064ab115bda5d62e4bb1cd8e0d299f00
13591359
languageName: node
13601360
linkType: hard
13611361

0 commit comments

Comments
 (0)