Never use any — use unknown for truly unknown types
The any type disables all type checking. Use unknown and narrow the type, or use a specific type.
Why This Matters
any silently turns off TypeScript for that value. Bugs propagate through the codebase without any compile-time warnings.
Tags
nextjssupabaseTypeScript
Related Rules
Catch this automatically on every PR
BeforeMerge scans your pull requests against this rule and 3+ others. Get actionable feedback before code ships.