- Rust workspace with stemedb-core crate - Full .claude/ configuration (agents, skills, commands, guides) - ai-lookup/ for token-efficient fact storage - Quality gates: clippy, fmt, jscpd duplication detection - Pre-commit hook with 5-phase quality checks - CLAUDE.md router and CODING_GUIDELINES.md standards Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
37 lines
296 B
Plaintext
37 lines
296 B
Plaintext
# Rust
|
|
/target/
|
|
**/*.rs.bk
|
|
Cargo.lock
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
*.pem
|
|
*.key
|
|
|
|
# Test/Coverage
|
|
*.profraw
|
|
*.profdata
|
|
/coverage/
|
|
/tarpaulin-report.html
|
|
|
|
# Build artifacts
|
|
*.o
|
|
*.a
|
|
*.so
|
|
*.dylib
|
|
|
|
# Code quality reports
|
|
.jscpd-report/
|