Skip to content

Commit 97e185e

Browse files
committed
allow unused locals and parameters
sometimes you do want to keep them for future needs
1 parent cdffc9e commit 97e185e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"noImplicitAny": true,
1818
"noPropertyAccessFromIndexSignature": true,
1919
"noUncheckedIndexedAccess": true,
20-
"noUnusedLocals": true,
21-
"noUnusedParameters": true,
20+
"noUnusedLocals": false,
21+
"noUnusedParameters": false,
2222
"removeComments": true,
2323
"resolveJsonModule": true,
2424
"strict": true,
@@ -32,4 +32,4 @@
3232
"ts-node": {
3333
"esm": true
3434
}
35-
}
35+
}

0 commit comments

Comments
 (0)