Skip to content

Commit

Permalink
feat(config/tsconfig): disable noUnusedLocals
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jrolfs committed Mar 10, 2020
1 parent 1312622 commit d7b9b37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"sourceMap": true,
"strict": true,
Expand Down

0 comments on commit d7b9b37

Please sign in to comment.