Files
Crussell/.gitignore
T
popertots 24af3a1fca
CI / Env docs check (push) Successful in 30s
CI / Nginx config check (push) Successful in 37s
CI / Docker compose check (push) Successful in 38s
CI / Frontend deps check (push) Successful in 46s
CI / Frontend major deps (push) Successful in 51s
CI / Secrets scan (push) Successful in 52s
CI / Go build (push) Successful in 56s
CI / Frontend build (push) Successful in 1m9s
CI / Knip (push) Successful in 46s
CI / Go vet (prod) (push) Successful in 1m59s
CI / Frontend a11y check (push) Successful in 2m7s
CI / Go vet (dev) (push) Successful in 2m4s
CI / go mod tidy (push) Successful in 25s
CI / Staticcheck (prod) (push) Successful in 2m43s
CI / Frontend QC (audit) (push) Successful in 1m39s
CI / Staticcheck (dev) (push) Successful in 3m47s
CI / Go vulnerabilities (push) Successful in 1m48s
CI / golangci-lint (push) Successful in 3m57s
CI / Frontend QC (typecheck) (push) Successful in 1m49s
CI / Security scan (prod) (push) Successful in 4m1s
CI / Security scan (dev) (push) Successful in 4m30s
CI / Frontend QC (lint) (push) Successful in 2m5s
CI / Svelte strict check (push) Failing after 988h42m2s
CI / Race (dev) (push) Failing after 988h42m18s
CI / Race (prod) (push) Failing after 988h42m19s
CI / Tests (dev) (push) Failing after 988h42m19s
CI / Tests (prod) (push) Failing after 988h42m20s
fix: enable eslint-plugin-svelte a11y rules and fix violations
2026-07-11 18:17:49 +01:00

105 lines
1.9 KiB
Plaintext

# ------------------------------------
# 1. Project-wide Secrets and Config
# ------------------------------------
# Environment/Secrets files
.env
.env_shared
*/.env
*/.env.*
# Local Certificate files
nginx/certs/
# Docker volumes
pgdata/
# ------------------------------------
# 2. Go (Backend)
# ------------------------------------
# Compiled binaries
backend/bin/
backend/vendor/
# macOS/Linux standard binary names
backend/app
backend/main
# Catch-all: any ELF/Mach-O binary in backend/ (go build, go test -c)
backend/crussell
backend/*.test
# Dependency management cache
backend/.DS_Store
# Go build cache
.cache/
# Go test outputs
*.out
!go.mod
!go.sum
# ------------------------------------
# 3. Node/Svelte (Frontend)
# ------------------------------------
# Root-level npm artifacts (from nested npm installs)
node_modules/
package.json
# Dependencies
frontend/node_modules
# SvelteKit/Vite build artifacts and cache
frontend/.svelte-kit
frontend/.vite
frontend/.svelte2tsx-language-server-files
frontend/build/
frontend/dist/
frontend/static/portfolio/*
# ------------------------------------
# 4. PHP/SabreDAV
# ------------------------------------
# Composer dependencies
sabredav/vendor/
composer.lock
# ------------------------------------
# 5. Local Tools and Notes
# ------------------------------------
# Bruno testing environments (keep collection files, ignore secrets)
bruno/*/environments/
# IDE files (e.g., VS Code)
.vscode/
# OS-generated files
.DS_Store
.Trash/
Thumbs.db
# ------------------------------------
# Git-specific
# ------------------------------------
*.orig # Git merge conflict files
# ------------------------------------
# Database dumps/backups
# ------------------------------------
*.sql.gz
*.dump
# ------------------------------------
# Nginx
# ------------------------------------
nginx/logs/
nginx/*.log
# Temp files
frontend/node_modules/.vite-temp