updating linting params

This commit is contained in:
Colin McLeod
2015-08-13 23:18:35 -07:00
parent df09da4b0a
commit 3d6d210563

View File

@@ -51,7 +51,8 @@ gulp.task('js-lint', function() {
'space-before-function-paren': [2, 'never'], 'space-before-function-paren': [2, 'never'],
'space-before-blocks': [2, 'always'], 'space-before-blocks': [2, 'always'],
'object-curly-spacing': [2, "always"], 'object-curly-spacing': [2, "always"],
'brace-style': [2, '1tbs', { allowSingleLine: true }] 'brace-style': [2, '1tbs', { allowSingleLine: true }],
'no-control-regex': false
}, },
envs: ['browser'] envs: ['browser']
})) }))