From 171224c94cf7588639a3a7a7e845c7414cec1777 Mon Sep 17 00:00:00 2001 From: jubnl Date: Mon, 25 May 2026 20:22:26 +0200 Subject: [PATCH] chore: add missing lint and prettier script in root package.json --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index f344962b..a259e7e9 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,10 @@ "build": "npm run build --workspace=shared && npm run build --workspace=server && npm run build --workspace=client", "test": "npm run test --workspace=shared && npm run test --workspace=server && npm run test --workspace=client", "test:cov": "npm run test:coverage --workspace=server && npm run test:coverage --workspace=client", - "test:e2e": "npm run test:e2e --workspace=server" + "test:e2e": "npm run test:e2e --workspace=server", + "lint": "npm run lint --workspace=shared && npm run lint --workspace=server && npm run lint --workspace=client", + "format": "npm run format --workspace=shared && npm run format --workspace=server && npm run format --workspace=client", + "format:check": "npm run format:check --workspace=shared && npm run format:check --workspace=server && npm run format:check --workspace=client" }, "devDependencies": { "concurrently": "^9.2.1"