Merge branch 'develop' into api-v3

This commit is contained in:
Blade Barringer
2015-11-17 23:15:15 -06:00
222 changed files with 4155 additions and 6240 deletions

View File

@@ -33,4 +33,21 @@ gulp.task('lint:common', () => {
.pipe(eslint.failAfterError());
});
gulp.task('lint:tests', () => {
return gulp
.src([
'./test/**/*.js',
// @TODO remove these negations as the test files are cleaned up.
'!./test/api-legacy/**/*',
'!./test/common/**/*',
'!./test/content/**/*',
'!./test/e2e/**/*',
'!./test/server_side/**/*',
'!./test/spec/**/*',
])
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError());
});
gulp.task('lint', ['lint:server', 'lint:common']);