From 94a58571a499114798a934f54b505ac9e65345ac Mon Sep 17 00:00:00 2001 From: Alessandro Chitolina Date: Wed, 31 Jul 2024 14:25:47 +0200 Subject: [PATCH] minor: use new eslint configuration file format --- test/.eslintrc.json | 7 ------- test/UlidTest.js | 1 - 2 files changed, 8 deletions(-) delete mode 100644 test/.eslintrc.json diff --git a/test/.eslintrc.json b/test/.eslintrc.json deleted file mode 100644 index fa4dd4a..0000000 --- a/test/.eslintrc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "rules": { - "no-new": "off", - "no-new-wrappers": "off", - "no-unused-expressions": "off" - } -} diff --git a/test/UlidTest.js b/test/UlidTest.js index e236367..71bcefa 100644 --- a/test/UlidTest.js +++ b/test/UlidTest.js @@ -57,7 +57,6 @@ export default @timeSensitive() class UlidTest extends TestCase { this.expectException(InvalidArgumentException); this.expectExceptionMessage('Invalid ULID: "this is not a ulid".'); - // eslint-disable-next-line no-new new Ulid('this is not a ulid'); }