From a759c34fa37878be156074dfb45d8454dd3a9dda Mon Sep 17 00:00:00 2001 From: Samuel Rigaud <46346622+s-rigaud@users.noreply.github.com> Date: Fri, 21 Feb 2025 09:16:24 -0500 Subject: [PATCH] COnfig: Fix eslint for test and .gitignore (#30580) Co-authored-by: Samuel Rigaud --- .gitignore | 4 +++- package.json | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 67663d274ce3b6..9bbf0fbacf2f7a 100644 --- a/.gitignore +++ b/.gitignore @@ -8,11 +8,13 @@ npm-debug.log .vs/ test/unit/build +test/treeshake/index-src.bundle.min.js test/treeshake/index.bundle.js test/treeshake/index.bundle.min.js test/treeshake/index.webgpu.bundle.js test/treeshake/index.webgpu.bundle.min.js -test/treeshake/index-src.bundle.min.js +test/treeshake/index.webgpu.nodes.bundle.js +test/treeshake/index.webgpu.nodes.bundle.min.js test/treeshake/stats.html test/e2e/chromium test/e2e/output-screenshots diff --git a/package.json b/package.json index 9006739e330458..b73b8f6d6d4ddc 100644 --- a/package.json +++ b/package.json @@ -58,7 +58,7 @@ "lint-playground": "eslint playground --ignore-pattern libs", "lint-manual": "eslint manual --ignore-pattern 3rdparty --ignore-pattern prettify.js --ignore-pattern shapefile.js", "lint-test": "eslint test --ignore-pattern vendor", - "lint-utils": "eslint utils", + "lint-utils": "eslint utils --ignore-pattern prettify --ignore-pattern fuse", "lint": "npm run lint-core", "lint-fix": "npm run lint-core -- --fix && npm run lint-addons -- --fix && npm run lint-examples -- --fix && npm run lint-docs -- --fix && npm run lint-editor -- --fix && npm run lint-playground -- --fix && npm run lint-manual -- --fix && npm run lint-test -- --fix && npm run lint-utils -- --fix", "test-unit": "qunit -r failonlyreporter -f !-webonly test/unit/three.source.unit.js",