From 9166ed40a0754c6c151ced9fffa4f94ef8c4f104 Mon Sep 17 00:00:00 2001 From: Kazushi Konosu Date: Thu, 12 Sep 2024 01:26:24 +0900 Subject: [PATCH] chore: dont specify target files in lint npm script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a5136f3..f1a48cd 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ }, "types": "./dist/main.d.ts", "scripts": { - "lint": "eslint .", + "lint": "eslint", "build": "rm -rf dist && node ./build.js", "type-check": "tsc -b", "prepublishOnly": "npm run build",