- .claude/rules: team-policy, git-workflow, code-style, naming, testing - .claude/skills: init-project, sync-team-workflow, create-mr, fix-issue - .claude/scripts: on-pre-compact, on-post-compact, on-commit (v1.2.0) - .claude/settings.json: 팀 표준 권한 allow/deny + script hooks - .githooks: commit-msg, pre-commit (mvn compile), post-checkout - .mvn/settings.xml: Nexus 미러 설정 - .editorconfig: 팀 표준 포맷 - CLAUDE.md: 팀 규칙 참조 섹션 추가 - .gitignore: !.claude/ negation 추가 (글로벌 gitignore override) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
46 lines
530 B
Plaintext
46 lines
530 B
Plaintext
# Build
|
|
target/
|
|
!.mvn/wrapper/maven-wrapper.jar
|
|
!**/src/main/**/target/
|
|
!**/src/test/**/target/
|
|
|
|
# IDE
|
|
.idea/
|
|
*.iws
|
|
*.iml
|
|
*.ipr
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
.factorypath
|
|
.vscode/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
nul
|
|
|
|
# Java
|
|
*.class
|
|
*.log
|
|
hs_err_pid*
|
|
|
|
# Spring Boot (local secrets)
|
|
application-local.yml
|
|
application-local.properties
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
secrets/
|
|
|
|
# Claude Code (팀 파일 추적, 로컬 파일만 제외)
|
|
!.claude/
|
|
.claude/settings.local.json
|
|
.claude/CLAUDE.local.md
|
|
|
|
# Project-specific
|
|
logs/
|
|
ship_img/
|
|
docs/~$*
|