From 532f8f8e4cb22f0047291c2917aa7f5a29fe23da Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Wed, 18 Jul 2018 19:36:36 +0900 Subject: [PATCH] Fix indent --- gulpfile.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gulpfile.ts b/gulpfile.ts index df8382547..fe5b38f5f 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -84,12 +84,12 @@ gulp.task('lint', () => ); gulp.task('format', () => -gulp.src('./src/**/*.ts') - .pipe(tslint({ - formatter: 'verbose', - fix: true - })) - .pipe(tslint.report()) + gulp.src('./src/**/*.ts') + .pipe(tslint({ + formatter: 'verbose', + fix: true + })) + .pipe(tslint.report()) ); gulp.task('mocha', () =>