# Java
target/
*.class
.flattened-pom.xml

# JS
node_modules/
dist/
*.tgz
*.tsbuildinfo
coverage/

# Python
.venv/
venv/
__pycache__/
*.egg-info/
build/
*.whl
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
# 참고: python -m build 의 산출물(dist/)은 위 JS 절의 dist/ 패턴이
# 경로 전체에 적용되므로 별도 항목 없이 함께 무시된다.

# 로그 (rscc_common.logging 이 자정 롤링 gzip 로그 파일을 생성)
logs/
*.log

# IDE / OS
.idea/
*.iml
.vscode/
.DS_Store

# 환경 파일은 커밋 금지
.env
.env.*
