Skip to content

Commit

Permalink
Allow fast null checks for unused expressions
Browse files Browse the repository at this point in the history
Closest rule available to standard/eslint-config-standard@1e3975c
  • Loading branch information
blakeembrey committed Feb 12, 2017
1 parent af6a4df commit e642e36
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 @@ -51,7 +51,7 @@ module.exports = {
'no-empty': true,
'no-eval': true,
'no-switch-case-fall-through': true,
'no-unused-expression': true,
'no-unused-expression': [true, 'allow-fast-null-checks'],
'no-var-keyword': true,
'radix': true,
'triple-equals': [
Expand Down

0 comments on commit e642e36

Please sign in to comment.