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

Commit

Permalink
fix: allow-destructuring on no-this-assignment
Browse files Browse the repository at this point in the history
close #47
  • Loading branch information
progre committed Aug 18, 2018
1 parent 0cd45bf commit d80f2f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tslint.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ module.exports = {
}, // 23.1
],
'variable-name': [true, 'check-format'], // 23.2
'no-this-assignment': true, // 23.5
'no-this-assignment': [true, 'allow-destructuring'], // 23.5
'import-name': true, // 23.6
},
};

0 comments on commit d80f2f0

Please sign in to comment.