We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8a4647 commit 832f71cCopy full SHA for 832f71c
jest/serializers/range.ts
@@ -4,6 +4,6 @@ export function test(val: any): val is Range {
4
return val && val instanceof Range;
5
}
6
7
-export function print(range: Range, serialize: (obj: any) => string): string {
+export function print(range: Range): string {
8
return range.toString();
9
tsconfig.json
@@ -38,7 +38,8 @@
38
/* Experimental Options */
39
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
40
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
41
- "noUnusedLocals": true
+ "noUnusedLocals": true,
42
+ "noUnusedParameters": true
43
},
44
"typeAcquisition": {
45
"enable": true
0 commit comments