From 241d371bcb6ce0d39e95d1b3c4141a780027f524 Mon Sep 17 00:00:00 2001 From: Sam Reid Date: Tue, 5 Nov 2024 08:32:05 -0700 Subject: [PATCH] Move getLintOptions to a separate file, see https://github.com/phetsims/chipper/issues/1484 --- js/grunt/tasks/lint-all.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/grunt/tasks/lint-all.ts b/js/grunt/tasks/lint-all.ts index 92e19226..00d3937e 100644 --- a/js/grunt/tasks/lint-all.ts +++ b/js/grunt/tasks/lint-all.ts @@ -7,10 +7,11 @@ */ import * as grunt from 'grunt'; -import lint, { getLintOptions } from '../../../../perennial-alias/js/eslint/lint.js'; +import lint from '../../../../perennial-alias/js/eslint/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'; +import getLintOptions from '../../../../perennial-alias/js/eslint/getLintOptions.js'; const repo = getRepo();