MovieMapper/.gitignore
Jarian Cottingham 323df5de2e feat: Add Rust implementation for performance-critical components
- Implement core Rust backend with FFmpeg integration
- Add TheTVDB API client with token caching
- Implement directory scanner with progress callbacks
- Create file manager with rename and move operations
- Add audit logging functionality
- Implement file mapping for TV episode renaming
- Build Node.js native addon via NAPI
- Include comprehensive unit and integration tests
- Update gitignore to exclude build artifacts and temp files

Resolves #TBD
2026-02-28 09:52:08 -06:00

74 lines
751 B
Plaintext

# Logs
logs
*.log
npm-debug.log
yarn-debug.log
yarn-error.log
app-debug.log
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Dependency directories
node_modules/
jspm_packages/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional type definition files
*.d.ts
# Environment variables
.env
.env.local
.env.*.local
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Build directories
build/
dist/
*.build.js
# Temporary files
*.tmp
*.temp
# Rust
rust/target/
rust/Cargo.lock
rust/**/*.o
rust/**/*.so
rust/**/release/
rust/**/debug/
# Node.js native addon
node/*.o
node/*.a
node/*.node
node/Release/
node/Debug/
node/.node-gyp/
# Build artifacts
*.pyc
__pycache__/
# Test coverage
coverage/
.nyc_output/