Skip to content
This repository was archived by the owner on Nov 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Note: All dependencies from https://github.com/github/gitignore are copied at revision 218a941be92679ce67d0484547e3e142b2f5f6f0.

# Golang
bin/
vendor/
*.out

#
# Rust.gitignore from https://github.com/github/gitignore. (Licensed as Creative Commons Zero v1.0 Universal: https://github.com/github/gitignore/blob/master/LICENSE)
#
Expand All @@ -16,6 +21,9 @@ Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk

# Avoid ignoring Cargo's special src/bin source directory
!**/src/bin

#
# /Rust
#
Expand All @@ -29,15 +37,13 @@ Cargo.lock

# Temporary files
*.000
*.bak
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why remove these three?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IDE warned about duplicate entries so I removed the less relevant duplicates.

*.bck
*.kicad_pcb-bak
*.kicad_sch-bak
*.kicad_prl
*.sch-bak
*~
_autosave-*
*.tmp
*-save.pro
*-save.kicad_pcb
*-cache.dcm
Expand Down Expand Up @@ -70,7 +76,6 @@ fp-info-cache
*.bak
*.gho
*.ori
*.orig
*.tmp

#
Expand Down Expand Up @@ -150,11 +155,6 @@ fp-info-cache
# Rust book
book/

# Golang
bin/
vendor/
*.out

# Node.js
node_modules/
.npm
Expand Down
Loading