Commit ca90b4c2 authored by Chris's avatar Chris
Browse files

added .gitignore

parent f119aab5
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+48 −0
Original line number Diff line number Diff line
# ------------------------------------------------------------
# Rust build artifacts
# ------------------------------------------------------------
# Every Cargo project creates a `target/` directory.  
# Ignore it anywhere in the repository (including inside `projects/`).
**/target/

# (If you ever have a workspace at the root that shares a
# single Cargo.lock, commit that lock file – we do NOT ignore it
# globally.)

# ------------------------------------------------------------
# General temporary / editor / OS files
# ------------------------------------------------------------
# VS Code / Sublime / JetBrains / Vim / Emacs
.vscode/
*.sublime-workspace
*.sublime-project
.idea/
*.suo
*.user
*.sln
*.psproj
*.pdb
*.log

# Temporary files created by editors
*~
*.swp
*.swo
*.tmp
*.bak

# OS specific junk
.DS_Store
Thumbs.db

# ------------------------------------------------------------
# Optional: ignore other build‑related output
# ------------------------------------------------------------
# If you have any custom build scripts that create a `build/`
# or `coverage/` directory you can ignore them here.
# build/
# coverage/

# ------------------------------------------------------------
# End of .gitignore
# ------------------------------------------------------------
 No newline at end of file
+8 −0
Original line number Diff line number Diff line
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml