Skip to content

Commit

Permalink
remove disable directives, phetsims/chipper#1498
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Nov 8, 2024
1 parent 16df127 commit 4da51dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions js/common/Maintenance.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const gitPull = require( './gitPull.js' );
const gitPush = require( './gitPush.js' );
const gitRevParse = require( './gitRevParse.js' );
const assert = require( 'assert' );
const asyncq = require( 'async-q' ); // eslint-disable-line phet/require-statement-match
const asyncQ = require( 'async-q' );
const _ = require( 'lodash' );
const fs = require( 'fs' );
const repl = require( 'repl' );
Expand Down Expand Up @@ -1047,7 +1047,7 @@ module.exports = ( function() {
}
} ) );

await asyncq.parallelLimit( asyncFunctions, options.concurrent );
await asyncQ.parallelLimit( asyncFunctions, options.concurrent );

console.log( 'Done' );
}
Expand Down
5 changes: 2 additions & 3 deletions js/scripts/initial-parse-locales-csv.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
// Copyright 2021, University of Colorado Boulder

const fs = require( 'fs' );
// eslint-disable-next-line phet/require-statement-match
const csv = require( 'csv-parser' );
const csvParser = require( 'csv-parser' );

const filePath = process.argv[ 2 ];

Expand All @@ -16,7 +15,7 @@ const parseCSV = ( filePath, callback ) => {
const rows = [];

fs.createReadStream( filePath )
.pipe( csv() )
.pipe( csvParser() )
.on( 'data', row => {
const values = Object.values( row );
rows.push( values );
Expand Down

0 comments on commit 4da51dd

Please sign in to comment.