refactor(types): drop 127 unnecessary as any casts (#210)
Removed every `as any` in src/, then restored only the ones tsc still needs: 163 → 36. 112 were in lotus-terminal.css.ts (`'… !important' as any` etc. — vanilla-extract's style types accept these strings as-is), so its file-wide eslint-disable goes too. The casts were type-only, so emitted code and generated CSS are unchanged. eslint warnings 49 → 46; the ratchet is tightened to match. tsc clean; 1202 unit tests pass. Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01PPmy3tPq869XDW4njjVaKA
This commit is contained in:
co-authored by
Claude Opus 5.5
parent
4a9823890b
commit
f3722ae859
+1
-1
@@ -12,7 +12,7 @@
|
||||
"build": "vite build",
|
||||
"preview": "vite preview",
|
||||
"lint": "npm run check:eslint && npm run check:prettier",
|
||||
"check:eslint": "eslint src/* --max-warnings 49",
|
||||
"check:eslint": "eslint src/* --max-warnings 46",
|
||||
"check:prettier": "prettier --check .",
|
||||
"fix:prettier": "prettier --write .",
|
||||
"typecheck": "tsc --noEmit",
|
||||
|
||||
Reference in New Issue
Block a user