# ====================================================================
# STREAM-1D Core Engine Ignore Rules
# ====================================================================

# Ignore the lightweight local development server
server.mjs

# Ignore the vanilla HTML/JS benchmark dashboard files
index.html
worker.js

# Ignore performance screenshots or test recordings generated by subagents
*.png
*.mp4
*.mov
benchmark_results_*.png

# Coverage reports (generated in CI)
lcov.info
coverage/

# Standard Rust / Cargo build artifacts
/target/
**/*.rs.bk

# WebAssembly package output (if you plan to publish npm packages separately)
# Note: If your JS worker explicitly imports from /pkg inside this repo, 
# you can track it, but usually, target files are ignored in the engine PR.
/pkg/
/pkg-node/

# Python-related build artifacts
__pycache__/
*.py[cod]
*$py.class
*.so
.venv/
