mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-10 00:27:05 -06:00
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import eventStream from 'event-stream';
|
|
import vfs from 'vinyl-fs';
|
|
import { eslintFilter } from './filters.ts';
|
|
import gulpEslint from './gulp-eslint.ts';
|
|
|
|
function eslint(): NodeJS.ReadWriteStream {
|
|
return vfs
|
|
.src(Array.from(eslintFilter), { base: '.', follow: true, allowEmpty: true })
|
|
.pipe(
|
|
gulpEslint((results) => {
|
|
if (results.warningCount > 0 || results.errorCount > 0) {
|
|
throw new Error(`eslint failed with ${results.warningCount + results.errorCount} warnings and/or errors`);
|
|
}
|
|
})
|
|
).pipe(eventStream.through(function () { /* noop, important for the stream to end */ }));
|
|
}
|
|
|
|
if (import.meta.main) {
|
|
eslint().on('error', (err) => {
|
|
console.error();
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|
|
}
|