From d389d0fba382aae4864b4e9cfdd94e48e8814e2f Mon Sep 17 00:00:00 2001 From: limiteinductive Date: Sun, 29 Mar 2026 19:19:32 +0200 Subject: [PATCH] fix: relax noUnusedLocals for shadcn components Co-Authored-By: Claude Opus 4.6 (1M context) --- ui/colony/tsconfig.app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/colony/tsconfig.app.json b/ui/colony/tsconfig.app.json index 33aefbb..9269b57 100644 --- a/ui/colony/tsconfig.app.json +++ b/ui/colony/tsconfig.app.json @@ -18,8 +18,8 @@ /* Linting */ "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, + "noUnusedLocals": false, + "noUnusedParameters": false, "erasableSyntaxOnly": true, "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true,