Skip to content

Commit d4cbdc4

Browse files
author
Andy
authored
Fix gulp lint (#18921)
1 parent b9fb173 commit d4cbdc4

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
@@ -1091,7 +1091,7 @@ gulp.task("lint", "Runs tslint on the compiler sources. Optional arguments are:
10911091
const fileMatcher = cmdLineOptions["files"];
10921092
const files = fileMatcher
10931093
? `src/**/${fileMatcher}`
1094-
: "Gulpfile.ts 'scripts/generateLocalizedDiagnosticMessages.ts' scripts/tslint/**/*.ts' 'src/**/*.ts' --exclude src/lib/es5.d.ts --exclude 'src/lib/*.generated.d.ts'";
1094+
: "Gulpfile.ts 'scripts/generateLocalizedDiagnosticMessages.ts' 'scripts/tslint/**/*.ts' 'src/**/*.ts' --exclude src/lib/es5.d.ts --exclude 'src/lib/*.generated.d.ts'";
10951095
const cmd = `node node_modules/tslint/bin/tslint ${files} --formatters-dir ./built/local/tslint/formatters --format autolinkableStylish`;
10961096
console.log("Linting: " + cmd);
10971097
child_process.execSync(cmd, { stdio: [0, 1, 2] });

0 commit comments

Comments
 (0)