-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.repomixignore
More file actions
215 lines (198 loc) · 3.82 KB
/
Copy path.repomixignore
File metadata and controls
215 lines (198 loc) · 3.82 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
# .repomixignore - Files to exclude from code audits and security reviews
# ================================
# SECURITY & SENSITIVE FILES
# ================================
# Never include these in external code reviews
.env*
*.key
*.pem
*.p12
*.pfx
*.crt
*.csr
secrets/
config/secrets/
storage/app/
storage/logs/
# ================================
# BUILD & DEPENDENCY FILES
# ================================
# Generated files that bloat audit output
vendor/
node_modules/
bower_components/
build/
dist/
public/build/
*.lock
*.cache
.next/
.nuxt/
# ================================
# TEMPORARY & CACHE FILES
# ================================
# Not relevant for code review
*.tmp
*.temp
*.swp
*.swo
*~
.DS_Store
Thumbs.db
*.pid
storage/framework/cache/
storage/framework/sessions/
storage/framework/views/
bootstrap/cache/
# ================================
# LOG & DEBUG FILES
# ================================
# Can contain sensitive runtime data
*.log
logs/
storage/logs/
laravel.log
xdebug/
*.trace
# ================================
# VERSION CONTROL & CI/CD
# ================================
# Internal tooling, not core code
.git/
.gitignore
.github/
.gitlab-ci.yml
.travis.yml
.circleci/
.jenkins/
Jenkinsfile
# ================================
# IDE & EDITOR FILES
# ================================
# Personal development environment files
.vscode/
.idea/
*.sublime-*
.brackets.json
.project
.classpath
.settings/
*.code-workspace
# ================================
# TEST & COVERAGE REPORTS
# ================================
# Generated test artifacts
coverage/
.coverage
.nyc_output/
.phpunit.result.cache
clover.xml
junit.xml
tests/coverage/
storage/coverage/
# ================================
# DOCUMENTATION ASSETS
# ================================
# Focus on code, not documentation images/videos
docs/images/
docs/videos/
docs/assets/
*.png
*.jpg
*.jpeg
*.gif
*.svg
*.ico
*.pdf
*.mov
*.mp4
# ================================
# PACKAGE & RELEASE FILES
# ================================
# Distribution files not relevant for audit
*.tar.gz
*.zip
*.rar
*.deb
*.rpm
releases/
dist/
# ================================
# CONFIGURATION OVERRIDES
# ================================
# Local/personal configuration files
config/local/
.env.local
.env.development
.env.testing
.env.production
docker-compose.override.yml
vagrant/
# ================================
# LARAVEL SPECIFIC EXCLUSIONS
# ================================
# Laravel framework files not needed in audit
public/hot
public/storage
storage/app/public
storage/debugbar/
bootstrap/cache/*.php
.phpunit.result.cache
# ================================
# DEVELOPMENT TOOLS OUTPUT
# ================================
# Tool-generated files
.phpcs.xml
.php_cs.cache
.phpmd.xml
.phpstan.cache
.psalm.cache
_ide_helper.php
_ide_helper_models.php
.phpstorm.meta.php
# ================================
# BACKUP & ARCHIVE FILES
# ================================
# Backup files that shouldn't be audited
*.backup
*.bak
*.old
*.orig
archive/
backups/
# ================================
# SECURITY VERIFICATION FILES
# ================================
# Our own security testing files (exclude from external audit)
security_fix_verification.php
SECURITY_FIXES_SUMMARY.md
# ================================
# PACKAGE MANAGER FILES
# ================================
# Dependency management (include main files, exclude locks)
composer.lock
package-lock.json
yarn.lock
pnpm-lock.yaml
# ================================
# SPECIFIC PROJECT EXCLUSIONS
# ================================
# Sentinels-specific files to exclude from audit
examples/*.log
tests/fixtures/large_data/
storage/sentinels/cache/
docs/generated/
# ================================
# BINARY & COMPILED FILES
# ================================
# Non-text files that can't be meaningfully audited
*.exe
*.dll
*.so
*.dylib
*.class
*.jar
*.war
*.ear
*.pyc
*.pyo