Skip to content

Commit d7b9b37

Browse files
committed
feat(config/tsconfig): disable noUnusedLocals
This seems to get in the way quite often during development trial and error and kinda falls more in the domain of linting in my opinion.
1 parent 1312622 commit d7b9b37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"noImplicitAny": true,
1313
"noImplicitReturns": true,
1414
"noImplicitThis": true,
15-
"noUnusedLocals": true,
15+
"noUnusedLocals": false,
1616
"noUnusedParameters": true,
1717
"sourceMap": true,
1818
"strict": true,

0 commit comments

Comments
 (0)