@@ -249,7 +249,7 @@ export function start() {
249249 let totalPassing = 0 ;
250250 const startDate = new Date ( ) ;
251251
252- const progressBars = new ProgressBars ( { noColors : noColors } ) ; // eslint-disable-line @typescript-eslint/no-unnecessary-qualifier
252+ const progressBars = new ProgressBars ( { noColors } ) ;
253253 const progressUpdateInterval = 1 / progressBars . _options . width ;
254254 let nextProgress = progressUpdateInterval ;
255255
@@ -259,7 +259,7 @@ export function start() {
259259 let closedWorkers = 0 ;
260260 for ( let i = 0 ; i < workerCount ; i ++ ) {
261261 // TODO: Just send the config over the IPC channel or in the command line arguments
262- const config : TestConfig = { light : lightMode , listenForWork : true , runUnitTests : runUnitTests , stackTraceLimit : stackTraceLimit , timeout : globalTimeout } ; // eslint-disable-line @typescript-eslint/no-unnecessary-qualifier
262+ const config : TestConfig = { light : lightMode , listenForWork : true , runUnitTests, stackTraceLimit, timeout : globalTimeout } ;
263263 const configPath = ts . combinePaths ( taskConfigsFolder , `task-config${ i } .json` ) ;
264264 IO . writeFile ( configPath , JSON . stringify ( config ) ) ;
265265 const worker : Worker = {
@@ -558,8 +558,7 @@ export function start() {
558558 failedTestReporter = new FailedTestReporter ( replayRunner , {
559559 reporterOptions : {
560560 file : path . resolve ( ".failed-tests" ) ,
561- keepFailed : keepFailed // eslint-disable-line @typescript-eslint/no-unnecessary-qualifier
562- // eslint-disable-line @typescript-eslint/no-unnecessary-qualifier
561+ keepFailed,
563562 }
564563 } ) ;
565564 }
0 commit comments