From ca8b5dcbc99d5cf31bddc7272360bf3f3cc81362 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Fri, 9 Aug 2024 11:59:34 +0200 Subject: [PATCH] Switch spec linter to JS --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ed6a0b9bd..4fc2801b2 100644 --- a/package.json +++ b/package.json @@ -17,8 +17,8 @@ "test:watch": "mocha test/unit/*.test.mjs --watch --reporter dot", "lint": "eslint --ext=ts src/", "lint:quiet": "eslint --quiet --ext=ts src/", - "lint:specs": "eslint test/unit/*.ts", - "lint:specs:quiet": "eslint --quiet test/unit/*.ts", + "lint:specs": "eslint test/unit/*.mjs", + "lint:specs:quiet": "eslint --quiet test/unit/*.mjs", "format": "esformatter --config esformatter-config.json -i src/sync.js", "build:js": "tsc -d --declarationDir release/types --declarationMap", "build:release": "NODE_ENV=production webpack --mode=production",