From a199fd8f6a3d7f0175ba5239382655bb18d8abca Mon Sep 17 00:00:00 2001 From: Kyle Seongwoo Jun Date: Sun, 7 Apr 2024 21:31:35 +0900 Subject: [PATCH] fix: update eslint glob pattern to include all files correctly (#67) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 050dc2c..31de206 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ }, "main": "dist/index.js", "scripts": { - "lint": "eslint src/**.ts --max-warnings=0", + "lint": "eslint src/**/*.ts --max-warnings=0", "watch": "npm run build && npm link && nodemon", "build": "rimraf ./dist && tsc", "prepublishOnly": "npm run lint && npm run build"