Skip to content

Commit 949760e

Browse files
committed
Update dependencies
1 parent b9be501 commit 949760e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@
3434
],
3535
"license": "MIT",
3636
"dependencies": {
37-
"@fimbul/bifrost": "^0.5.0",
37+
"@fimbul/bifrost": "^0.6.0",
3838
"tslib": "^1.7.1",
3939
"tsutils": "^2.22.2"
4040
},
4141
"devDependencies": {
42-
"@fimbul/valtyr": "^0.4.0",
43-
"@fimbul/wotan": "^0.5.0",
42+
"@fimbul/valtyr": "^0.6.0",
43+
"@fimbul/wotan": "^0.6.0",
4444
"coveralls": "^3.0.0",
4545
"github-release-from-changelog": "^1.2.1",
4646
"npm-run-all": "^4.1.1",

rules/noUnnecessaryTypeAnnotationRule.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ function walk(ctx: Lint.WalkContext<IOptions>, checker: ts.TypeChecker) {
283283
return;
284284
case 1:
285285
return [signatures[0], true];
286-
default:
286+
default: {
287287
const str = checker.signatureToString(signatures[0], undefined, formatFlags);
288288
const withoutReturn = removeSignatureReturn(str);
289289
let returnUsable = true;
@@ -296,6 +296,7 @@ function walk(ctx: Lint.WalkContext<IOptions>, checker: ts.TypeChecker) {
296296
}
297297
}
298298
return [signatures[0], returnUsable];
299+
}
299300
}
300301
}
301302
}

0 commit comments

Comments
 (0)