반응형
Typescript 프로젝트의 naming convention
백엔드/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...

반응형
image