devs/bin/config/rust.gitignore
Mauro Rosero P. bd0b200118
[ADDED] Archivos .gitignore específicos para cada tipo de proyecto
- Creados archivos .gitignore para cada tipo de proyecto con reglas específicas
- Para Odoo, se excluye de seguimiento la carpeta data y su contenido
- Integrados en project_new.sh para copiarse automáticamente al crear un proyecto

🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-03-13 07:35:25 -05:00

61 lines
No EOL
852 B
Text

# Rust gitignore
# Generated by Cargo
/target/
Cargo.lock
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
# These are backup files generated by rustfmt
**/*.rs.bk
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
# IDE specific files
.idea/
.vscode/
*.swp
*.swo
# Generated documentation
/doc/
/target/doc/
# Coverage reports
coverage/
*.profraw
# Logs
*.log
# Environment variables
.env
.env.*
!.env.example
# Compiled files
*.rlib
*.rmeta
*.a
*.so
*.dylib
*.dll
# Debug symbols
*.dSYM/
# Test binaries
tests/test_*/
# Optional: remove all test binaries in debug folder
target/debug/deps/*
!target/debug/deps/*.d
# Profiling data
*.prof
# OS specific
.DS_Store
Thumbs.db