forked from noodlapp/noodl
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy path.clineignore
More file actions
151 lines (132 loc) · 4.7 KB
/
Copy path.clineignore
File metadata and controls
151 lines (132 loc) · 4.7 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# =============================================================================
# OpenNoodl .clineignore
# =============================================================================
# This file tells Cline which folders/files to ignore when indexing the codebase.
# Place this file at the root of the OpenNoodl repository.
# =============================================================================
# -----------------------------------------------------------------------------
# Specific heavy file locations that Cline doesn't need
# -----------------------------------------------------------------------------
packages/noodl-editor/src/assets/
packages/noodl-core-ui/src/assets/
packages/noodl-editor/build/icons/
packages/noodl-editor/src/assets/
packages/noodl-editor/tests/testfs/
packages/noodl-editor/tests/recordings/
# -----------------------------------------------------------------------------
# Dependencies (MASSIVE - always ignore)
# -----------------------------------------------------------------------------
node_modules/
**/node_modules/
# -----------------------------------------------------------------------------
# Build & Distribution Output
# -----------------------------------------------------------------------------
build/
dist/
**/build/
**/dist/
publish/
**/publish/
bundles/
**/bundles/
# -----------------------------------------------------------------------------
# External Dependencies (Parse Dashboard, etc.)
# -----------------------------------------------------------------------------
deps/
# -----------------------------------------------------------------------------
# Git
# -----------------------------------------------------------------------------
.git/
# -----------------------------------------------------------------------------
# Compiled/Bundled JavaScript (not source code)
# -----------------------------------------------------------------------------
*.bundle.js
*.min.js
*.min.css
**/*.bundle.js
**/*.min.js
# Specific bundled/minified files
packages/noodl-viewer-react/static/
# -----------------------------------------------------------------------------
# Static Assets (images, fonts, etc.)
# -----------------------------------------------------------------------------
**/assets/fonts/
**/assets/images/
**/public/fonts/
**/public/images/
**/*.png
**/*.jpg
**/*.jpeg
**/*.gif
**/*.ico
**/*.woff
**/*.woff2
**/*.ttf
**/*.eot
**/*.svg
!packages/noodl-core-ui/src/**/*.svg
# -----------------------------------------------------------------------------
# Test Artifacts
# -----------------------------------------------------------------------------
coverage/
**/coverage/
**/__snapshots__/
*.snap
# -----------------------------------------------------------------------------
# IDE & Editor Configs (not needed for code understanding)
# -----------------------------------------------------------------------------
.idea/
.vscode/
*.code-workspace
# -----------------------------------------------------------------------------
# OS Generated Files
# -----------------------------------------------------------------------------
.DS_Store
Thumbs.db
*.log
# -----------------------------------------------------------------------------
# Temporary & Cache Files
# -----------------------------------------------------------------------------
.cache/
**/.cache/
*.tmp
*.temp
.eslintcache
.prettiercache
# -----------------------------------------------------------------------------
# Environment & Secrets
# -----------------------------------------------------------------------------
.env
.env.*
*.pem
*.key
# -----------------------------------------------------------------------------
# Electron Build Artifacts
# -----------------------------------------------------------------------------
packages/noodl-editor/release/
packages/noodl-editor/out/
# -----------------------------------------------------------------------------
# Storybook Build Output
# -----------------------------------------------------------------------------
storybook-static/
**/storybook-static/
# -----------------------------------------------------------------------------
# Generated Type Declarations (if separate from source)
# -----------------------------------------------------------------------------
**/*.d.ts.map
# -----------------------------------------------------------------------------
# Lock Files (package structure is in package.json)
# -----------------------------------------------------------------------------
package-lock.json
yarn.lock
pnpm-lock.yaml
# -----------------------------------------------------------------------------
# Miscellaneous Large/Unneeded Files
# -----------------------------------------------------------------------------
*.dmg
*.exe
*.AppImage
*.deb
*.rpm
*.zip
*.tar.gz