From 521aea56127552d63c1ea7a878127a904ee380ee Mon Sep 17 00:00:00 2001 From: Developer Date: Mon, 19 Jan 2026 02:02:38 +0530 Subject: [PATCH] chore: add lint:check script to verify code formatting - Add lint:check npm script to verify prettier formatting for markdown, json, and js files - Helps catch formatting issues before CI checks --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 3645124e..3fdfe743 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,8 @@ "postinstall": "cd website && yarn", "prepare": "husky install", "start": "yarn --cwd website start", - "build": "yarn --cwd website build" + "build": "yarn --cwd website build", + "lint:check": "prettier --check \"**/*.{md,json,js}\"\"" }, "dependencies": { "front-matter": "^4.0.2",