feat: setup stricter linting

This commit is contained in:
2026-05-24 22:36:41 +02:00
parent e022b60920
commit fc1883a6c3
6 changed files with 68 additions and 7 deletions

View File

@@ -9,7 +9,10 @@
"typecheck": "bunx tsc -p tsconfig.json --noEmit",
"build:assets": "bun run build:css && bun run build:ts",
"format": "bunx prettier . --write",
"lint": "bunx eslint . --fix"
"lint": "bun run lint:ts && bun run lint:go",
"lint:ts": "bunx eslint . --max-warnings 0",
"lint:ts:fix": "bunx eslint . --fix",
"lint:go": "golangci-lint run"
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.4",