summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorJonathan de Jong <jonathan@automatia.nl>2021-03-13 20:33:16 +0100
committerJonathan de Jong <jonathan@automatia.nl>2021-03-13 20:33:16 +0100
commitd0d5bc412b570e10e9233b3b917e838cfd04df29 (patch)
treea7ea24bb41d5cc9d8011b68a5ce103daadfa2a54 /.gitignore
parente785ff6f56040c15e81f61bd758dfceb939394ef (diff)
downloadconduit-d0d5bc412b570e10e9233b3b917e838cfd04df29.zip
Add more gitignore
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore63
1 files changed, 61 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index efbc1d9..e2f4e88 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,64 @@
-/target
-**/*.rs.bk
+# CMake
+cmake-build-*/
+
+# IntelliJ
+.idea/
+out/
+*.iml
+modules.xml
+*.ipr
+
+# mpeltonen/sbt-idea plugin
+.idea_modules/
+
+# Linux backup files
+*~
+
+# 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*
+
+# Rust
+/target/
+### vscode ###
+.vscode/*
+!.vscode/settings.json
+!.vscode/tasks.json
+!.vscode/launch.json
+!.vscode/extensions.json
+*.code-workspace
+
+### 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 shortcuts
+*.lnk
+
+# Conduit
Rocket.toml
conduit.toml
+
+# Etc.
+**/*.rs.bk