Skip to content

Commit a9fc001

Browse files
TravCavmhegazy
authored andcommitted
fixes tslint warning (#21469)
1 parent 6fadd48 commit a9fc001

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gulpfile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1115,7 +1115,7 @@ gulp.task("lint", "Runs tslint on the compiler sources. Optional arguments are:
11151115
const fileMatcher = cmdLineOptions.files;
11161116
const files = fileMatcher
11171117
? `src/**/${fileMatcher}`
1118-
: "Gulpfile.ts 'scripts/generateLocalizedDiagnosticMessages.ts' 'scripts/tslint/**/*.ts' 'src/**/*.ts' --exclude 'src/lib/*.d.ts'";
1118+
: `Gulpfile.ts "scripts/generateLocalizedDiagnosticMessages.ts" "scripts/tslint/**/*.ts" "src/**/*.ts" --exclude "src/lib/*.d.ts"`;
11191119
const cmd = `node node_modules/tslint/bin/tslint ${files} --formatters-dir ./built/local/tslint/formatters --format autolinkableStylish`;
11201120
console.log("Linting: " + cmd);
11211121
child_process.execSync(cmd, { stdio: [0, 1, 2] });

0 commit comments

Comments
 (0)