Skip to content

Commit 46c411a

Browse files
committed
Disable noUnusedLocals and noUnusedParameters
1 parent 7aee932 commit 46c411a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
2020

2121
/* Additional Checks */
22-
"noUnusedLocals": true, /* Report errors on unused locals. */
23-
"noUnusedParameters": true, /* Report errors on unused parameters. */
22+
"noUnusedLocals": false, /* Report errors on unused locals. */
23+
"noUnusedParameters": false, /* Report errors on unused parameters. */
2424
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
2525
"noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
2626

0 commit comments

Comments
 (0)