Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Commit

Permalink
Remove the deprecated rule "no-unused-variable"
Browse files Browse the repository at this point in the history
- "no-unused-variables" has been deprecated, see palantir/tslint#4046
  for more information.
  • Loading branch information
Nelson Yeung committed Feb 4, 2019
1 parent 85ec746 commit c2afe79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules/variables.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = {
// 'no-undefined': 'off', NO-SUPPORT

// disallow declaration of variables that are not used in the code
'no-unused-variable': true,
// 'no-unused-variable': true, NO-SUPPORT

// disallow use of variables before they are defined
'no-use-before-declare': true
Expand Down

0 comments on commit c2afe79

Please sign in to comment.