build(gulp): add gulpfile.js to files formatted by clang-format

This commit is contained in:
Igor Minar 2015-11-13 00:00:40 -08:00
parent 9c94ab1e8e
commit 49e261efd8
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ gulp.task('build/pubbuild.dart',
// formatting
function doCheckFormat() {
return gulp.src(['modules/**/*.ts', 'tools/**/*.ts', '!**/typings/**/*.d.ts'])
return gulp.src(['modules/**/*.ts', 'tools/**/*.ts', '!**/typings/**/*.d.ts', 'gulpfile.js'])
.pipe(gulpFormat.checkFormat('file', clangFormat));
}