From ec2363075569a5a90059b4e1e168ccf52a884850 Mon Sep 17 00:00:00 2001 From: Wuesteon Date: Wed, 3 Dec 2025 13:58:40 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore:=20add=20lint:root=20and?= =?UTF-8?q?=20lint:fix=20scripts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - lint:root: run ESLint with root config on all files - lint:fix: run ESLint with auto-fix 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index 9f2f1086c..256822eef 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,8 @@ "build": "turbo run build", "test": "turbo run test", "lint": "turbo run lint", + "lint:root": "eslint .", + "lint:fix": "eslint . --fix", "type-check": "turbo run type-check", "clean": "turbo run clean", "format": "prettier --config .prettierrc.json --write \"**/*.{ts,tsx,js,jsx,json,md,svelte,astro}\"",