Common git ignore file for all my projects
authorSébastien CHAZALLET <s.chazallet@gmail.com>
Tue, 9 Dec 2014 21:34:55 +0000 (22:34 +0100)
committerSébastien CHAZALLET <s.chazallet@gmail.com>
Tue, 9 Dec 2014 21:34:55 +0000 (22:34 +0100)
.gitignore

index 4c3277c..96cf70e 100644 (file)
@@ -1,30 +1,78 @@
-# sphinx build directories
-_build/
-
 # dotfiles
 .*
 !.gitignore
-# compiled python files
-*.py[co]
-# setup.py egg_info
-*.egg-info
-# emacs backup files
+
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+env/
+build/
+develop-eggs/
+dist/
+eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+*.egg-info/
+.installed.cfg
+*.egg
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.coverage
+.cache
+nosetests.xml
+coverage.xml
+
+# Translations
+*.mo
+*.pot
+
+# Logging stuff:
+*.log
+
+# Sphinx documentation
+docs/_build/
+
+# editors backup, swap or config files
 *~
+*.swp
+.project
+.pydevproject
+.settings
+.idea/
+
+# Data directory
+/data
+
 # hg stuff
 *.orig
 status
+
 # odoo filestore
 openerp/filestore
+
 # generated for windows installer?
 install/win32/*.bat
 install/win32/meta.py
 
 # various virtualenv
 /bin/
-/build/
-/dist/
 /include/
 /lib/
 /man/
 /share/
-/src/
\ No newline at end of file
+/src/