-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
34 lines (30 loc) · 1.22 KB
/
.gitignore
File metadata and controls
34 lines (30 loc) · 1.22 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
# ------------------------
# OS / 에디터 임시파일 (루트)
# ------------------------
.DS_Store
# ------------------------
# IDE / IntelliJ / Android Studio (frontend 폴더)
# ------------------------
/frontend/.idea/ # frontend 내 전체 .idea 폴더 무시
/frontend/*.iml # frontend 내의 IntelliJ 모듈 파일 무시
# 필요 시, .idea 내에서 공유할 폴더/파일만 예외처리(주석 해제 후 사용)
!/frontend/.idea/codeStyles/
!/frontend/.idea/inspectionProfiles/
!/frontend/.idea/runConfigurations/
# ------------------------
# Android / Gradle (frontend 폴더)
# ------------------------
/frontend/**/build/ # frontend 하위 모든 모듈 내 build 폴더 무시
/frontend/.gradle/
/frontend/local.properties # frontend 내 개인 환경 설정 파일 무시
# (gradle-wrapper.jar, gradlew, gradlew.bat 등은 보통 커밋하여 프로젝트 재현성을 보장)
# 추가로 무시할 수 있는 파일들 (필요 시 주석 해제)
/frontend/.idea/caches
/frontend/.idea/libraries
/frontend/.idea/modules.xml
/frontend/.idea/workspace.xml
/frontend/.idea/navEditor.xml
/frontend/.idea/assetWizardSettings.xml
/frontend/captures
/frontend/.externalNativeBuild
/frontend/.cxx