aboutsummaryrefslogtreecommitdiff
path: root/script/calendar_generator/.gitignore
diff options
context:
space:
mode:
Diffstat (limited to 'script/calendar_generator/.gitignore')
-rw-r--r--script/calendar_generator/.gitignore71
1 files changed, 71 insertions, 0 deletions
diff --git a/script/calendar_generator/.gitignore b/script/calendar_generator/.gitignore
new file mode 100644
index 0000000..aa324bd
--- /dev/null
+++ b/script/calendar_generator/.gitignore
@@ -0,0 +1,71 @@
+# Created by https://www.toptal.com/developers/gitignore/api/rust,emacs
+# Edit at https://www.toptal.com/developers/gitignore?templates=rust,emacs
+
+### Emacs ###
+# -*- mode: gitignore; -*-
+*~
+\#*\#
+/.emacs.desktop
+/.emacs.desktop.lock
+*.elc
+auto-save-list
+tramp
+.\#*
+
+# Org-mode
+.org-id-locations
+*_archive
+
+# flymake-mode
+*_flymake.*
+
+# eshell files
+/eshell/history
+/eshell/lastdir
+
+# elpa packages
+/elpa/
+
+# reftex files
+*.rel
+
+# AUCTeX auto folder
+/auto/
+
+# cask packages
+.cask/
+dist/
+
+# Flycheck
+flycheck_*.el
+
+# server auth directory
+/server/
+
+# projectiles files
+.projectile
+
+# directory configuration
+.dir-locals.el
+
+# network security
+/network-security.data
+
+
+### Rust ###
+# Generated by Cargo
+# will have compiled files and executables
+debug/
+target/
+
+# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
+# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
+Cargo.lock
+
+# These are backup files generated by rustfmt
+**/*.rs.bk
+
+# MSVC Windows builds of rustc generate these, which store debugging information
+*.pdb
+
+# End of https://www.toptal.com/developers/gitignore/api/rust,emacs