From 479bbf3c15ec249f8f72f977de35f8343ff16a24 Mon Sep 17 00:00:00 2001 From: Thomas Robinson Date: Wed, 29 Jan 2025 16:40:35 +0000 Subject: [PATCH 1/2] ESLint: Ignore errors in test.js --- test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test.js b/test.js index df5ac98..5c02ded 100644 --- a/test.js +++ b/test.js @@ -1,3 +1,5 @@ +/* eslint-disable */ + QUnit.config.reorder = false; const { test } = QUnit; From 34985ac38709eacb0e1d87551502c4a1b1e0f0bb Mon Sep 17 00:00:00 2001 From: Thomas Robinson Date: Thu, 30 Jan 2025 19:54:40 +0000 Subject: [PATCH 2/2] ESLint: only ignore undefined functions, not all errors --- test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.js b/test.js index 5c02ded..030aa8a 100644 --- a/test.js +++ b/test.js @@ -1,4 +1,4 @@ -/* eslint-disable */ +/* eslint-disable no-undef */ QUnit.config.reorder = false; const { test } = QUnit;