524176faec
The broad plugins/ and imports/ patterns were matching directories at all levels, excluding frontend/src/plugins/vuetify.ts, frontend/src/views/imports/, frontend/src/views/plugins/, and src/Purrse.Tests/Plugins/. Changed to /plugins/ and /imports/ to only match root-level directories. This was the root cause of the Docker build failure - vuetify.ts was missing from the repo. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
41 lines
379 B
Plaintext
41 lines
379 B
Plaintext
# .NET
|
|
bin/
|
|
obj/
|
|
*.user
|
|
*.suo
|
|
*.cache
|
|
*.dll
|
|
*.pdb
|
|
*.exe
|
|
.vs/
|
|
*.DotSettings.user
|
|
|
|
# Node / Frontend
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
frontend/.vite/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# Environment
|
|
.env
|
|
*.local
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
|
|
# Claude Code
|
|
.claude/
|
|
|
|
# Plugins and imports (runtime data, root-level only)
|
|
/plugins/
|
|
/imports/
|