![Typescript 프로젝트의 naming convention](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FcEqupf%2FbtsBxf9k16J%2FQnnXh8vKRYVghbPSE2YgLk%2Fimg.png)
백엔드/NodeJS | Typescript2023. 12. 7. 21:46Typescript 프로젝트의 naming convention
Enforcing a naming convention keeps the code base consistent and reduces overhead when thinking about how to name a variable. We recommend the following: Use camelCase for variable and function names.Use PascalCase for class names and interface names.Use camelCase for interface members.Use PascalCase for type names and enum names.Name files with camelCase (for example, ebsVolumes.tsx or storage...