From ded148192f8a34fc4e3813e53ad929758a300dfb Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Thu, 23 Jun 2016 15:51:12 -0700 Subject: [PATCH] Fix lint --- Gulpfile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gulpfile.ts b/Gulpfile.ts index 14e5e9f1288..2e6081bea4a 100644 --- a/Gulpfile.ts +++ b/Gulpfile.ts @@ -443,7 +443,7 @@ gulp.task(builtLocalCompiler, false, [servicesFile], () => { }); gulp.task(servicesFile, false, ["lib", "generate-diagnostics"], () => { - const servicesProject = tsc.createProject("src/services/tsconfig.json", getCompilerSettings({removeComments: false}, /*useBuiltCompiler*/false)); + const servicesProject = tsc.createProject("src/services/tsconfig.json", getCompilerSettings({ removeComments: false }, /*useBuiltCompiler*/false)); const {js, dts} = servicesProject.src() .pipe(newer(servicesFile)) .pipe(sourcemaps.init())