[eslint config] [base] Update a deprecated option

This commit is contained in:
Wooram Jun
2017-01-10 20:33:04 +09:00
parent b7aabb938d
commit d892cc9117

View File

@@ -37,7 +37,7 @@ module.exports = {
// require the use of === and !==
// http://eslint.org/docs/rules/eqeqeq
eqeqeq: ['error', 'allow-null'],
eqeqeq: ['error', 'always', { null: 'ignore' }],
// make sure for-in loops have an if statement
'guard-for-in': 'error',