forked from Chinchillas-kernel/chinchilla
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.coderabbit.yaml
More file actions
69 lines (60 loc) · 1.31 KB
/
Copy path.coderabbit.yaml
File metadata and controls
69 lines (60 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# CodeRabbit 설정
language: ko
reviews:
auto_review:
enabled: true
drafts: false
# 모든 브랜치에서 리뷰
base_branches:
- main
- dev
- develop
- master
- "feature/.*"
- "fix/.*"
- "test/.*"
- "docs/.*"
# 프로파일
profile: chill
# 리뷰 옵션
high_level_summary: true
poem: false
review_status: true
collapse_walkthrough: false
# 파일 필터
path_filters:
- "**/*.java"
- "**/*.py"
- "**/*.gradle"
- "**/*.yml"
- "**/*.yaml"
- "**/*.md"
- "**/*.json"
# 제외 파일
path_ignore:
- "**/node_modules/**"
- "**/build/**"
- "**/dist/**"
- "**/__pycache__/**"
- "**/*.pyc"
- "**/data/chroma_*/**" # ChromaDB 제외
- "**/chroma.sqlite3" # SQLite 파일 제외
- "**/data/raw/**"
# 파일별 지침
path_instructions:
- path: "**/*.py"
instructions: |
Python 코드 리뷰:
- PEP 8 스타일 가이드 준수
- 타입 힌팅 확인
- Docstring 작성
- 에러 핸들링
- path: "**/*.java"
instructions: |
Java 코드 리뷰:
- Spring Boot 베스트 프랙티스
- 보안 취약점 체크
chat:
auto_reply: true
early_access: false
enable_free_tier: true