From 7c546e63149aa0ce01878af03b6e6241683118c5 Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Sun, 1 Dec 2024 15:42:36 +0100 Subject: [PATCH] Fix lint not working --- .eslintrc.js => .eslintrc.cjs | 0 package.json | 1 + 2 files changed, 1 insertion(+) rename .eslintrc.js => .eslintrc.cjs (100%) diff --git a/.eslintrc.js b/.eslintrc.cjs similarity index 100% rename from .eslintrc.js rename to .eslintrc.cjs diff --git a/package.json b/package.json index 4050e41..95837b3 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "prepare": "rm -rf @types && npm run typecheck && npm run build-declarations && npm run build", "pretest": "npm run build", "test": "node test.cjs", + "lint": "eslint src", "build-declarations": "tsc --emitDeclarationOnly", "typecheck": "tsc --noemit", "clean-coverage": "rm -rf coverage .nyc_output .xunit",