From 51cbc301df155f2892c783d91bb414c83de1ad00 Mon Sep 17 00:00:00 2001 From: Sebastien Roy Date: Thu, 6 Jun 2024 13:17:09 -0400 Subject: [PATCH] Add gitignore file --- .gitignore | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bd3e442 --- /dev/null +++ b/.gitignore @@ -0,0 +1,81 @@ +# 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 + +# Node artifact files +node_modules/ +dist/ +build/ + +# Compiled Java class files +*.class +*.prof +# Compiled Python bytecode +*.py[cod] +*.egg-info + +# Log files +*.log + +# Package files +*.jar + +# Maven +target/ + +# JetBrains IDE +.idea/ + +# Unit test reports +TEST*.xml + +# Generated by MacOS +.DS_Store + +# Generated by Windows +Thumbs.db + +# Applications +*.app +*.exe +*.war + +# Large media files +*.mp4 +*.tiff +*.avi +*.flv +*.mov +*.wmv +*.svg + +# Python +__pycache__ + +# Cython compiled +*.c +*.so +*.h + +# Latex +*.synctex.gz +*.toc +*.out +*.aux +*.fdb_latexmk +*.fls +*.bbl +*.blg +*.xwm +/venv/ +*.xwm + +# Misc +.vscode +.coverage +*.zip +*_package +logs +scratch +notes