Skip to content

Commit

Permalink
chore(tslint): disable no-unused-variable (#4353)
Browse files Browse the repository at this point in the history
This rule has caused so many problems for me in the past.
See cartant/rxjs-tslint-rules#4
  • Loading branch information
cartant authored and benlesh committed Mar 25, 2019
1 parent 2a8050a commit 039f3f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"no-var-keyword": true,
"no-empty": true,
"no-unused-expression-chai": true,
"no-unused-variable": true,
"no-unused-variable": false,
"no-use-before-declare": true,
"no-var-requires": true,
"no-require-imports": true,
Expand Down

0 comments on commit 039f3f3

Please sign in to comment.