🔧 chore: add lint:root and lint:fix scripts

- 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 <noreply@anthropic.com>
This commit is contained in:
Wuesteon 2025-12-03 13:58:40 +01:00
parent f720a25c20
commit ec23630755

View file

@ -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}\"",