forked from CyberDrain/Check
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
336 lines (257 loc) · 4.21 KB
/
.gitignore
File metadata and controls
336 lines (257 loc) · 4.21 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
# CyberShield Drain - Git Ignore File
# Node.js dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Package manager locks (choose one based on your preference)
# package-lock.json
# yarn.lock
# Build outputs
dist/
build/
*.zip
*.crx
*.pem
# Development files
.env
.env.local
.env.development
.env.test
.env.production
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# Chrome extension development
web-accessible-resources/temp/
*.key
private-key.pem
extension.pem
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# Coverage reports
coverage/
*.lcov
.nyc_output
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Optional npm cache directory
.npm
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# next.js build output
.next
# nuxt.js build output
.nuxt
# vuepress build output
.vuepress/dist
# Serverless directories
.serverless
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# TernJS port file
.tern-port
# Stores VSCode versions used for testing VSCode extensions
.vscode-test
# Temporary folders
tmp/
temp/
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msm
*.msp
# Windows shortcuts
*.lnk
# Linux
*~
# KDE directory preferences
.directory
# Linux trash folder which might appear on any partition or disk
.Trash-*
# .nfs files are created when an open file is removed but is still being accessed
.nfs*
# MacOS
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# Extension-specific ignores
config/local-config.json
config/development.json
config/production.json
config/test.json
manifest.chrome.json
# Sensitive configuration files
config/secrets.json
config/private-keys.json
config/certificates/
keys/
certificates/
# Custom detection rules (if sensitive)
rules/custom-rules.json
rules/private-rules.json
# User data and logs
user-data/
logs/
audit-logs/
security-logs/
# Test files
test-results/
screenshots/
test-output/
# Backup files
*.bak
*.backup
*.old
*.orig
# Compiled CSS from SASS/LESS
*.css.map
# Package files
*.deb
*.dmg
*.exe
*.iso
*.tar.gz
# Application specific
manifest-v2.json
legacy/
# Chrome Web Store assets
store-assets/screenshots/
store-assets/promotional/
store-assets/videos/
# Brand assets and design files
CyberDrain-Brand/
brand-assets/
design-assets/
marketing-assets/
# Documentation builds
docs/_build/
docs/build/
# Translation files
locales/*.mo
*.pot
# Database files
*.db
*.sqlite
*.sqlite3
# Configuration files with sensitive data
config/managed-policies.json
config/enterprise-settings.json
# Deployment files
deploy/
deployment/
releases/
# External resources
external/
vendor/
third-party/
# Cache directories
.cache/
cache/
# Benchmark results
benchmark-results/
# Performance test results
perf-results/
# Memory dumps
*.hprof
*.heap
# ESLint cache
.eslintcache
# Prettier cache
.prettiercache
# Stylelint cache
.stylelintcache
# Jest cache
.jestcache
# Cypress
cypress/videos/
cypress/screenshots/
# Storybook
storybook-static/
# Webpack
.webpack/
# Rollup
.rollup/
# Parcel
.parcel/
# TypeScript
*.tsbuildinfo
# Optional stylelint cache
.stylelintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# Local Netlify folder
.netlify
# SvelteKit build / generate output
.svelte-kit
# End of https://www.gitignore.io/api/node
.github/copilot-instructions.md