mirror of
https://github.com/joleuger/vuinputd.git
synced 2026-07-17 16:36:03 +00:00
Add .gitignore
This commit is contained in:
parent
cb73fde9af
commit
61cfb84cff
1 changed files with 57 additions and 0 deletions
57
.gitignore
vendored
Normal file
57
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
# Ignore build artifacts and editor files for this Rust workspace
|
||||
|
||||
# Rust / Cargo
|
||||
/target/
|
||||
**/target/
|
||||
**/target/*
|
||||
**/debug/
|
||||
**/release/
|
||||
**/incremental/
|
||||
|
||||
# Generated package crates / archives
|
||||
/package/
|
||||
/package/*
|
||||
|
||||
# tarpaulin coverage output
|
||||
/tarpaulin/
|
||||
|
||||
# VS Code and JetBrains
|
||||
.vscode/
|
||||
.idea/
|
||||
|
||||
# Editor swap / backup files
|
||||
*~
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
|
||||
# Windows
|
||||
Thumbs.db
|
||||
|
||||
# Temporary files
|
||||
/tmp/
|
||||
|
||||
# Build artifacts
|
||||
*.o
|
||||
*.rlib
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
*.exe
|
||||
|
||||
# Coverage/profiler data
|
||||
*.profraw
|
||||
*.profdata
|
||||
|
||||
# Environment files (optional)
|
||||
.env
|
||||
.env.local
|
||||
|
||||
# Misc
|
||||
.cache/
|
||||
.cargo/
|
||||
|
||||
# Debian build files
|
||||
ex/*
|
||||
Loading…
Add table
Add a link
Reference in a new issue