Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,7 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

.kiro/specs

*.bak
7 changes: 6 additions & 1 deletion .kiro/steering/task-execution-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
- **커스텀훅**: 로직은 커스텀훅으로 분리함
- **컴포넌트 분리**: 50줄 이상의 컴포넌트는 분리 고려

### 컴포넌트 구현
```typescript
// 1. 인터페이스 정의
interface ComponentProps {
Expand All @@ -52,6 +51,9 @@ export function Component({
```

### 비즈니스 로직 구현

- ESM 모듈 시스템을 활용해 적절히 인터페이스 노출

```typescript
// 1. 타입 정의
export type DataType = {
Expand All @@ -72,6 +74,9 @@ describe('processData', () => {
})
```

### Next.js 아키텍처 준수
- App Router의 이점과 서버 컴포넌트를 적극 활용

### 기능 구조 우선
- 스타일링보다 기능적 구조와 로직에 집중
- 컴포넌트의 역할과 책임을 명확히 정의
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@
},
"[tailwindcss]": {
"editor.defaultFormatter": "biomejs.biome"
}
},
"biome.enabled": true
}
Loading