From 7dabc44e9375d96781568064b738cfb6e8296734 Mon Sep 17 00:00:00 2001 From: ronny abraham Date: Wed, 29 Jan 2025 19:35:03 +0200 Subject: [PATCH] update gitignore --- .gitignore | 134 +++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 98 insertions(+), 36 deletions(-) diff --git a/.gitignore b/.gitignore index b24d71e..a1fa4a4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,50 +1,112 @@ -# These are some examples of commonly ignored file patterns. -# You should customize this list as applicable to your project. -# Learn more about .gitignore: -# https://www.atlassian.com/git/tutorials/saving-changes/gitignore +# Created by https://www.toptal.com/developers/gitignore/api/vim,emacs,sass,osx +# Edit at https://www.toptal.com/developers/gitignore?templates=vim,emacs,sass,osx -# Node artifact files -node_modules/ +*.html +*.css + +### 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/ -# Compiled Java class files -*.class +# Flycheck +flycheck_*.el -# Compiled Python bytecode -*.py[cod] +# server auth directory +/server/ -# Log files -*.log +# projectiles files +.projectile -# Package files -*.jar +# directory configuration +.dir-locals.el -# Maven -target/ -dist/ +# network security +/network-security.data -# JetBrains IDE -.idea/ -# Unit test reports -TEST*.xml - -# Generated by MacOS +### OSX ### +# General .DS_Store +.AppleDouble +.LSOverride -# Generated by Windows -Thumbs.db +# Icon must end with two \r +Icon -# Applications -*.app -*.exe -*.war +# Thumbnails +._* -# Large media files -*.mp4 -*.tiff -*.avi -*.flv -*.mov -*.wmv +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### Sass ### +.sass-cache/ +*.css.map +*.sass.map +*.scss.map + +### Vim ### +# Swap +[._]*.s[a-v][a-z] +!*.svg # comment out if you don't need vector files +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +# Session +Session.vim +Sessionx.vim + +# Temporary +.netrwhist +# Auto-generated tag files +tags +# Persistent undo +[._]*.un~ + +# End of https://www.toptal.com/developers/gitignore/api/vim,emacs,sass,osx