diff options
author | Aeddis Desauw <aeddis@deuxfleurs.fr> | 2024-05-07 19:56:27 +0200 |
---|---|---|
committer | Aeddis Desauw <aeddis@deuxfleurs.fr> | 2024-05-07 21:09:55 +0200 |
commit | b3725ac2ac548a99e4e70c4ee39ab9d05205a62a (patch) | |
tree | 29757009c83062aace56e768da0f2d9904c3ef70 /script/calendar_generator/.gitignore | |
parent | 1c9ff174cf10893162e40e2ec7f6b3f034b88fdc (diff) | |
download | site-b3725ac2ac548a99e4e70c4ee39ab9d05205a62a.tar.gz site-b3725ac2ac548a99e4e70c4ee39ab9d05205a62a.zip |
add script to generate ascii calendar
Diffstat (limited to 'script/calendar_generator/.gitignore')
-rw-r--r-- | script/calendar_generator/.gitignore | 71 |
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 |