Enable no-unexpected-multiline (#3103)

This rule can help catch errors introduced by automatic semicolon insertion
edge cases. It seems like a sensible thing to have enabled in a code base that
does not use semicolons.

http://eslint.org/docs/rules/no-unexpected-multiline
This commit is contained in:
Jordan Eldredge
2017-04-12 15:18:14 -07:00
committed by John-David Dalton
parent aafd66da62
commit b79b715383

View File

@@ -50,6 +50,8 @@ module.exports = {
'no-undef': ['error'],
'no-unexpected-multiline': ['error'],
'no-unused-vars': ['error', {
'args': 'none',
'vars': 'all'