Skip to content

Commit e2d01ee

Browse files
committed
chore(.gitignore): add buildflow-managed ignore patterns block
Add a comprehensive buildflow-managed section to .gitignore that covers common patterns across multiple development environments and toolchains: - **Secrets/credentials**: .env.local variants, PEM/key files that might accidentally get committed during local development or testing - **Databases**: SQLite and similar database files including WAL and shared memory segments that accumulate during runtime - **Operating systems**: Platform-specific artifacts (.DS_Store, Thumbs.db, Spotlight-V100, Trash metadata) that commonly pollute repositories when cross-platform teams collaborate - **Editors/IDEs**: Common editor swap files, backup files, and config directories (.idea/, .vscode/, *~) that should never be committed - **Logs and temporaries**: General-purpose temp files that various tools and scripts generate during execution - **Buildflow artifacts**: buildflow-specific files including audit logs, workflow baselines, and generated configuration that are runtime/ CI artifacts rather than source - **Reports and coverage**: Test reports and coverage output directories The block is delimited with buildflow markers (>>> and <<<) so that buildflow can detect, regenerate, and manage this section automatically during project tooling operations. 💘 Generated with Crush Assisted-by: Crush:MiniMax-M2.7-highspeed
1 parent 2e5b080 commit e2d01ee

1 file changed

Lines changed: 46 additions & 0 deletions

File tree

.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,3 +140,49 @@ dist
140140
# Vite logs files
141141
vite.config.js.timestamp-*
142142
vite.config.ts.timestamp-*
143+
144+
# >>> buildflow-managed (.gitignore) >>>
145+
# Auto-managed by buildflow. Edit outside these markers; this block is regenerated on `buildflow --fix`.
146+
147+
## Secrets and environment
148+
.env.local
149+
.env.*.local
150+
*.pem
151+
*.key
152+
153+
## Databases
154+
*.db
155+
*.db-shm
156+
*.db-wal
157+
158+
## Operating systems
159+
.DS_Store
160+
._*
161+
.Spotlight-V100
162+
.Trashes
163+
Thumbs.db
164+
ehthumbs.db
165+
166+
## Editors and ides
167+
.idea/
168+
.vscode/
169+
*.swp
170+
*.swo
171+
*~
172+
173+
## Logs and temporaries
174+
*.tmp
175+
*.temp
176+
177+
## Buildflow artifacts
178+
audit-log.*
179+
workflow-audit-log.*
180+
.buildflow-workflow-baseline.json
181+
182+
## Reports and coverage
183+
reports/
184+
185+
## Javascript and typescript
186+
build/
187+
.pnpm-debug.log*
188+
# <<< buildflow-managed (.gitignore) <<<

0 commit comments

Comments
 (0)