- Belkin & Suchower (1998) credit cycle index (Zt) estimation via WLS - Vasicek single-factor conditional PD/TM model - Macro-Zt OLS regression with stepwise variable selection - 3-scenario (boom/neutral/recession) 50yr PD projection - Statistical validation suite (ADF, Ljung-Box, R2, ARCH) - BOK ECOS API integration with fallback data - Visualization module (7 chart types) - Detailed theoretical methodology docs/methodology.md
1.1 KiB
1.1 KiB
Coding Conventions
AI 에이전트는 코드를 작성하기 전 이 컨벤션을 확인합니다.
네이밍
| 대상 | 규칙 | 예시 |
|---|---|---|
| 변수/함수 | camelCase | getUserData() |
| 클래스 | PascalCase | UserService |
| 상수 | UPPER_SNAKE_CASE | MAX_RETRY_COUNT |
| 파일명 | kebab-case | user-service.js |
| CSS 클래스 | kebab-case | .nav-header |
코드 스타일
- 들여쓰기: (2 spaces / 4 spaces / tab)
- 세미콜론: (사용 / 미사용)
- 따옴표: (single / double)
- 줄바꿈: LF (Unix style)
커밋 메시지
<type>(<scope>): <description>
type: feat|fix|refactor|test|docs|chore|ci|infra
scope: (선택)
예시:
feat(server): add WebSocket reconnection logicfix(frontend): resolve button overlap on mobiledocs: update API documentation
주석
- 한국어/영어 혼용 가능
- TODO 주석:
// TODO: 설명형식 - 복잡한 로직에는 반드시 WHY(왜) 주석 추가
테스트
- 테스트 파일 위치: (예:
__tests__/또는*.test.js) - 테스트 네이밍:
should [expected behavior] when [condition]