From b3725ac2ac548a99e4e70c4ee39ab9d05205a62a Mon Sep 17 00:00:00 2001 From: Aeddis Desauw Date: Tue, 7 May 2024 19:56:27 +0200 Subject: add script to generate ascii calendar --- script/calendar_generator/.gitignore | 71 ++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 script/calendar_generator/.gitignore (limited to 'script/calendar_generator/.gitignore') 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 -- cgit v1.2.3