Skip to content

Commit

Permalink
chore(BE): AI 코드 리뷰 설정 파일 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
viaunixue committed Oct 13, 2024
1 parent 2a7738f commit 723134a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/scripts/review_config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# 리뷰에서 제외할 파일 목록
IGNORED_FILES = [
'.gitignore',
'requirements.txt',
'docker-compose.yml',
'Dockerfile',
'setup.cfg',
'pyproject.toml',
'.env.example',
'README.md',
'LICENSE',
]

# 리뷰에서 제외할 파일 확장자
IGNORED_EXTENSIONS = [
'.md',
'.txt',
'.log',
'.json',
'.yaml', '.yml',
]

# 중요 파일 판단 기준
IMPORTANT_FILE_CHANGE_THRESHOLD = 100

# 파일당 최대 코멘트 수
MAX_COMMENTS_PER_FILE = 3
1 change: 1 addition & 0 deletions app/backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ flake8-comprehensions
flake8-pytest-style
isort
mypy
groq

0 comments on commit 723134a

Please sign in to comment.