Skip to content

Instantly share code, notes, and snippets.

View LucasJantschChitolina's full-sized avatar
🏠
Working from home

Lucas Chitolina LucasJantschChitolina

🏠
Working from home
View GitHub Profile
@LucasJantschChitolina
LucasJantschChitolina / gist:f75b77988cecd17d7a3262df9c903455
Created October 13, 2025 17:27
Numeric Input With Shadcn + Zod + RHF
"use client";
import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import { z } from "zod";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import {
Card,

Code Review Checklist

Overview

Comprehensive checklist for conducting thorough code reviews to ensure quality, security, and maintainability.

Don't run tests or linting, this is done automatically. Just inspect the code.

Review Categories