diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-07-18 19:36:36 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-07-18 19:36:36 +0900 |
| commit | 532f8f8e4cb22f0047291c2917aa7f5a29fe23da (patch) | |
| tree | 1a2697bd31227c3af9914e3dadce5eba40f51575 /gulpfile.ts | |
| parent | Add white spaces (diff) | |
| download | misskey-532f8f8e4cb22f0047291c2917aa7f5a29fe23da.tar.gz misskey-532f8f8e4cb22f0047291c2917aa7f5a29fe23da.tar.bz2 misskey-532f8f8e4cb22f0047291c2917aa7f5a29fe23da.zip | |
Fix indent
Diffstat (limited to 'gulpfile.ts')
| -rw-r--r-- | gulpfile.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gulpfile.ts b/gulpfile.ts index df8382547d..fe5b38f5fc 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', () => |