From 256eda11e196f4134796c8185769ba9e56124815 Mon Sep 17 00:00:00 2001 From: Jeppe Klitgaard Date: Wed, 1 Apr 2015 17:40:10 +0200 Subject: [PATCH] Added more stuff to gitignore --- .gitignore | 84 ++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 76 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 638ba42..20665b3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,78 @@ -*.pyc -build/* -src/* +# Created by https://www.gitignore.io -*.iml -.idea/ +### Python ### +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] -_build -_static -_templates \ No newline at end of file +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover + +# Translations +*.mo +*.pot + +# Django stuff: +*.log + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + + +### SublimeText ### +# 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 SublimeText +# *.sublime-project + +# sftp configuration file +sftp-config.json