mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
45 lines
459 B
Text
45 lines
459 B
Text
# Version control
|
|
# .git/
|
|
# .gitignore
|
|
# .gitattributes
|
|
# .git-blame-ignore-revs
|
|
# .gitconfig
|
|
|
|
# Build artifacts
|
|
bin/
|
|
dist/
|
|
**/dist/
|
|
out/
|
|
**/out/
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
**/node_modules/
|
|
|
|
# Test and development files
|
|
coverage/
|
|
**/.vscode-test/
|
|
|
|
# Configuration files
|
|
# .env*
|
|
knip.json
|
|
.husky/
|
|
|
|
# CI/CD
|
|
# .changeset/
|
|
# .github/
|
|
# ellipsis.yaml
|
|
|
|
# OS specific
|
|
.DS_Store
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Nix
|
|
# flake.lock
|
|
# flake.nix
|
|
|
|
# Monorepo
|
|
benchmark/exercises/
|