Skip to content

Commit

Permalink
Promote no-undef to be treated as an error (#669)
Browse files Browse the repository at this point in the history
Fixes #498
  • Loading branch information
gaearon authored Sep 17, 2016
1 parent a5bf074 commit feae8f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/eslint.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ module.exports = {
'no-template-curly-in-string': 'warn',
'no-this-before-super': 'warn',
'no-throw-literal': 'warn',
'no-undef': 'warn',
'no-undef': 'error',
'no-unexpected-multiline': 'warn',
'no-unreachable': 'warn',
'no-unused-expressions': 'warn',
Expand Down

0 comments on commit feae8f0

Please sign in to comment.