Files
ferro-ta/.gitignore
T
Pratik Bhadane 58a1dc2308 chore: remove .coverage file and update .gitignore to exclude coverage files
- Deleted the .coverage file to clean up the repository.
- Updated .gitignore to ensure .coverage and .coverage.* files are ignored in future commits.
- Revised README.md to enhance clarity and conciseness regarding the library's capabilities and performance.
- Improved documentation for the MCP server, emphasizing its expanded functionality and integration with clients.
2026-03-24 12:49:17 +05:30

45 lines
439 B
Plaintext

# Rust build artifacts
/target/
wasm/target/
# Compiled Python extension
*.so
*.pyd
*.dll
# Maturin / wheel build outputs
dist/
*.egg-info/
__pycache__/
*.pyc
*.pyo
# Virtual environments
.venv/
venv/
env/
# IDE files
.idea/
.vscode/
*.swp
*.swo
# Issue tracker
/myissues/
# WASM build output
wasm/pkg/
wasm/pkg-web/
.coverage
.coverage.*
coverage.xml
.hypothesis/
/docs/_build/
# DS Store in all directories
.DS_Store
*.DS_Store