From 8201f2c3c4371ea0cb4e29f55606d4c71c6e8e6c Mon Sep 17 00:00:00 2001 From: Espy | Neko | 404 <34942042+neko404notfound@users.noreply.github.com> Date: Tue, 22 May 2018 21:44:28 +0100 Subject: [PATCH] Added stuff to gitignore Pycache will be ignored recursively. Added rest of IJ ignore bits and pieces. Fixed something else and added ST3 stuff you don't want upstream. --- .gitignore | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 916052a..e59dfb0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,15 @@ # Byte-compiled / optimized / DLL files -__pycache__/ + +# Recurse +**/__pycache__ + *.py[cod] *$py.class # C extensions *.so +# Object files +*.o # Distribution / packaging .Python @@ -105,4 +110,21 @@ venv.bak/ /src/config/Config.json /src/config/PrivateConfig.json -.idea/ \ No newline at end of file + +# IntelliJ stuff +.idea/ +*.iml + +# Sublime stuff +# Cache files for Sublime Text +*.tmlanguage.cache +*.tmPreferences.cache +*.stTheme.cache + +# Workspace files are user-specific +*.sublime-workspace + +# Project files should be checked into the repository, unless a significant +# proportion of contributors will probably not be using Sublime Text +# *.sublime-project +