-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.cursorignore
More file actions
107 lines (96 loc) · 1.02 KB
/
.cursorignore
File metadata and controls
107 lines (96 loc) · 1.02 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# Cursor가 불필요하게 읽지 않아도 되는 파일/폴더 목록
# OS/에디터 임시파일
.DS_Store
Thumbs.db
*.swp
*.swo
*.orig
*.tmp
*.temp
*.bak
# VCS
.git/
.gitignore
.gitattributes
# Python 캐시/빌드 산출물
__pycache__/
*.pyc
*.pyo
*.pyd
*.so
.venv/
venv/
.env/
.env.*
.venv*/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.tox/
.coverage
.coverage.*
htmlcov/
build/
dist/
site/
.eggs/
*.egg-info/
.ipynb_checkpoints/
.pyre/
.pytype/
.cache/
# 로그
logs/
*.log
# IDE/에디터 설정
.vscode/
.idea/
.history/
*.code-workspace
# Docker/런타임 소켓 등
*.pid
*.sock
# 데이터/임시 산출물
data/
outputs/
tmp/
temp/
# (있다면) 프론트엔드 관련 대용량 폴더
node_modules/
.yarn/
.pnp*
.npm/
.bun/
.next/
.nuxt/
.parcel-cache/
coverage/
coverage.*
*.tsbuildinfo
# 바이너리/대용량 파일
*.zip
*.tar
*.tar.gz
*.tgz
*.7z
*.gz
*.bz2
*.xz
*.db
*.sqlite
*.sqlite3
*.mp4
*.mp3
*.wav
*.mov
*.jpg
*.jpeg
*.png
*.gif
*.svg
*.pdf
*.ico
*.woff
*.woff2
# 프로젝트 특화(환경 폴더 등)
envs/