Skip to content

Commit

Permalink
rename to parseLintOptions, #1489
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Oct 23, 2024
1 parent 286388d commit 6af2446
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/grunt/tasks/lint-all.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import * as grunt from 'grunt';
import lint, { parseLintOptions } from '../../../../perennial-alias/js/grunt/lint.js';
import lint, { getLintOptions } from '../../../../perennial-alias/js/grunt/lint.js';
import getBrands from '../../../../perennial-alias/js/grunt/tasks/util/getBrands.js';
import getRepo from '../../../../perennial-alias/js/grunt/tasks/util/getRepo.js';
import getPhetLibs from '../getPhetLibs.js';
Expand All @@ -21,7 +21,7 @@ const brands = getBrands( grunt, repo );
*/
export const lintAll = ( async () => {

const lintReturnValue = await lint( parseLintOptions( { repos: getPhetLibs( repo, brands ) } ) );
const lintReturnValue = await lint( getLintOptions( { repos: getPhetLibs( repo, brands ) } ) );

// Output results on errors.
if ( !lintReturnValue.ok ) {
Expand Down

0 comments on commit 6af2446

Please sign in to comment.