From cf12d9a038f69bbe92f2b200a515c7320011303a Mon Sep 17 00:00:00 2001 From: Ulises Santana Date: Thu, 19 Oct 2023 12:11:37 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20fix=20lint=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d60d9e9..e5af3a0 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "deploy": "npm clean-install --omit=dev && npm run build", "dev": "node esbuild.config.mjs", "lint": "eslint . --ext .ts", - "lint:fix": "npm run lint -- --fix", + "lint:fix": "npm run lint -- --fix", "tag": "node version-bump.mjs && TAG=$(node -pe \"require('./package.json').version\"); git commit -am \"🔖 $TAG\" && git tag $TAG && git push --tags", "test": "jest --verbose --coverage", "test:all": "npm t && npm run test:deploy",