58 lines
1.0 KiB
Plaintext
58 lines
1.0 KiB
Plaintext
# Node modules
|
|
/node_modules/
|
|
|
|
# .NET build output
|
|
/.next/
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Cache files
|
|
.next/cache/webpack/*.gz
|
|
|
|
# Ignoring trace files
|
|
trace
|
|
|
|
# Webpack cache files
|
|
.next/cache/webpack/client-development/*.gz
|
|
.next/cache/webpack/server-development/*.gz
|
|
|
|
# Ignore specific Next.js build files
|
|
pages-manifest.json
|
|
Lastenheft.js
|
|
# Dendron-Verzeichnis ignorieren
|
|
/draw.io/
|
|
|
|
# Ignore docs.zip
|
|
docs.zip
|
|
|
|
# Entwicklungsdaten
|
|
/mockData/
|
|
/__mocks__/
|
|
/__tests__/
|
|
|
|
# --- Playwright artifacts & test selection ---
|
|
# Ignore Playwright output folders and run metadata
|
|
/test-results/
|
|
/playwright-report/
|
|
/.last-run.json
|
|
# Ignore any Playwright traces/screenshots/videos if configured elsewhere
|
|
/traces/
|
|
/screenshots/
|
|
/videos/
|
|
# Ignore JUnit report artifacts (not used currently)
|
|
/reports/junit/
|
|
|
|
# Track only spec files under playwright/tests; ignore everything else
|
|
/playwright/tests/**
|
|
!/playwright/tests/**/*.spec.js
|
|
!/playwright/tests/**/*.spec.ts
|
|
|
|
# Ignore Playwright cache if present
|
|
/playwright/.cache/
|