summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonard Kugis <leonard@kug.is>2022-10-05 21:01:26 +0200
committerLeonard Kugis <leonard@kug.is>2022-10-05 21:01:26 +0200
commitd7965de3e189996c99b45b2776c0110c44897cd5 (patch)
treebe7d8be928c3913e7f5c7f7609ff1408828ab4c4
parent0d6c506efe38ba9bf69355609a01e8a7634eff69 (diff)
Updated gitignore
-rw-r--r--.gitignore85
1 files changed, 85 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index eee4db0..e3e0e65 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,86 @@
*.hex
+
+# Created by https://www.toptal.com/developers/gitignore/api/kicad,linux,windows
+# Edit at https://www.toptal.com/developers/gitignore?templates=kicad,linux,windows
+
+### KiCad ###
+# For PCBs designed using KiCad: https://www.kicad.org/
+# Format documentation: https://kicad.org/help/file-formats/
+
+# Temporary files
+*.000
+*.bak
+*.bck
+*.kicad_pcb-bak
+*.kicad_sch-bak
+*-backups
+*.kicad_prl
+*.sch-bak
+*~
+_autosave-*
+*.tmp
+*-save.pro
+*-save.kicad_pcb
+fp-info-cache
+
+# Netlist files (exported from Eeschema)
+*.net
+
+# Autorouter files (exported from Pcbnew)
+*.dsn
+*.ses
+
+# Exported BOM files
+*.xml
+*.csv
+
+### KiCad Patch ###
+rescue-backup/
+
+*.tsv
+bom/
+
+# Gerber export output
+out/
+
+### Linux ###
+
+# temporary files which can be created if a process still has a handle open of a deleted file
+.fuse_hidden*
+
+# KDE directory preferences
+.directory
+
+# Linux trash folder which might appear on any partition or disk
+.Trash-*
+
+# .nfs files are created when an open file is removed but is still being accessed
+.nfs*
+
+### Windows ###
+# Windows thumbnail cache files
+Thumbs.db
+Thumbs.db:encryptable
+ehthumbs.db
+ehthumbs_vista.db
+
+# Dump file
+*.stackdump
+
+# Folder config file
+[Dd]esktop.ini
+
+# Recycle Bin used on file shares
+$RECYCLE.BIN/
+
+# Windows Installer files
+*.cab
+*.msi
+*.msix
+*.msm
+*.msp
+
+# Windows shortcuts
+*.lnk
+
+# End of https://www.toptal.com/developers/gitignore/api/kicad,linux,windows