Files
dss/.gitignore
Bruno Sarlo 842cce133c Fix tests and add json_store test coverage
- Fix test_ingestion.py: SCSS token names, empty CSS handling, JSON error type
- Fix test_dss_mcp_commands.py: Use relative path, update tool count to 48
- Add test_json_store.py: 22 tests covering cache, projects, tokens, components,
  activity log, teams, sync history, and stats
- Add venv/ to .gitignore

All 215 tests passing.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-10 08:38:04 -03:00

71 lines
612 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
.venv/
venv/
*.egg-info/
dist/
build/
# Node
node_modules/
npm-debug.log*
yarn-error.log*
# Environment
.env
.env.local
*.local
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Logs
logs/
*.log
# Testing
.pytest_cache/
coverage/
.coverage
# Databases
*.db
*.sqlite
*.sql
*.db.old
# Cache
.cache/
.dss-temp/
.dss/cache/
# Temp files (exclude all except README and .gitkeep)
.dss/temp/**/*
!.dss/temp/.gitkeep
!.dss/temp/README.md
# Backups
*.backup
*.bak
*~
*.corrupted.*
archive/
test_output/
# Build
dist/
.next/
out/
storybook-static/
venv/