By React & TypeScript

Author : daeseopk Published : 2024.03.18 Last Updated : 2025.09.03


πŸ“Œ Naming Conventions

File Naming

TypeScript Naming

Function Naming

const nameGet = () => { ... }        // ❌
const getName = () => { ... }        // βœ…
const calculateValue = () => { ... } // βœ…

Boolean Naming