From d2d7cf1bc004eb6910bf1ace21329a5bcc69f544 Mon Sep 17 00:00:00 2001 From: Sachin Kumar Date: Sat, 6 May 2023 05:12:32 +0530 Subject: [PATCH 1/2] chore: add scripts to fix lint --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index d1b7114d..6913aea0 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,9 @@ "lint:spelling": "cspell \"**/*.*\"", "lint:types": "tsc --pretty --noEmit", "lint": "npm-run-all -l -p \"lint:**\"", + "fix:js": "npm run lint:js -- --fix", + "fix:prettier": "npm run lint:prettier -- --write", + "fix": "npm-run-all -l -p \"fix:**\"", "prepare": "husky install && npm run build", "release": "standard-version", "security": "npm audit --production", From 19013a2a15904be2d9f610e38864cec65936b0fc Mon Sep 17 00:00:00 2001 From: Sachin Kumar Date: Sat, 6 May 2023 14:32:58 +0530 Subject: [PATCH 2/2] chore: update fix script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6913aea0..e7eac489 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "lint": "npm-run-all -l -p \"lint:**\"", "fix:js": "npm run lint:js -- --fix", "fix:prettier": "npm run lint:prettier -- --write", - "fix": "npm-run-all -l -p \"fix:**\"", + "fix": "npm-run-all -l fix:js fix:prettier", "prepare": "husky install && npm run build", "release": "standard-version", "security": "npm audit --production",