58 lines
687 B
Plaintext
Executable File
58 lines
687 B
Plaintext
Executable File
# Cargo / Rust build artifacts
|
|
/target/
|
|
# c++
|
|
/build/
|
|
|
|
# IDEs and Editors
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
.directory
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.bk
|
|
|
|
# Local/User-specific configurations
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Consolidated rules from sub-projects
|
|
# Cargo/Rust additional artifacts
|
|
**/target/
|
|
Cargo.toml.orig
|
|
*.so
|
|
*.dll
|
|
*.dylib
|
|
*.rlib
|
|
*.pdb
|
|
**/*.rs.bk
|
|
**/Cargo.lock
|
|
!/Cargo.lock
|
|
**/build.id
|
|
|
|
# Node/Kilo artifacts
|
|
node_modules/
|
|
**/node_modules/
|
|
package-lock.json
|
|
pnpm-lock.yaml
|
|
bun.lock
|
|
yarn.lock
|
|
agent-manager.json
|
|
**/package.json
|
|
|
|
# OS-specific
|
|
Thumbs.db
|
|
|
|
#custom
|
|
_images
|
|
_tmp
|
|
.history
|
|
# Custom dev environment
|
|
/.rustup/
|
|
/logs/last_semantic_audit.txt
|
|
/logs/semantic_impact_*.txt
|