-
Notifications
You must be signed in to change notification settings - Fork 3
Coding Convention
Seongho Yun edited this page Nov 17, 2022
·
4 revisions
- 디렉터리 이름:
- PascalCase
- 클래스 명
- PascalCase
- 인터페이스 명
- PascalCase
- 상수 명
- UPPER_SNAKE_CASE
- 변수 명
- camelCase
- 함수 명
- camelCase
inteface test extends dfsdf {
abc: icon;
dfsdf: string;
}
type icon = "apple" | "bear" | "cat"
- 클라이언트 디렉터리 구조 예시
- client
- assets
- components
- NavBar
- NavBar.component.tsx
- NavBar.style.ts
- NavBar.type.ts
- hooks
- lib
- pages
- types
- store
- utils
- 서버 디렉터리 구조 예시
- server
- Common
- User
- User.Controller.ts
- User.Service.ts
- User.Model.ts
- DB 테이블 컬럼명
- snake_case