Created
September 19, 2014 06:41
-
-
Save jasimmk/3231888e21cabbf42465 to your computer and use it in GitHub Desktop.
Gitignore for Python WebDevelopment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Boilerplate for .gitignore, Ignores unnecessary file extension/folders for python web development | |
# OS Stuff | |
.DS_Store | |
Thumbs.db | |
.sass-cache | |
*.*~ | |
*.bak | |
*.coverage | |
# Python Files | |
*.py[cod~] | |
# 'python setup.py develop' | |
*.egg-info | |
# Editors & IDE | |
# Emacs | |
*~ | |
\#*# | |
.#* | |
# Vim swap | |
*.swp | |
# PyCharm files | |
.idea | |
# Sublime | |
*.sublime-project | |
*.sublime-workspace | |
# Test and Build files | |
# nose, coverage | |
dist/ | |
.coverage | |
coverage.xml | |
coverage_report/ | |
nosetests.xml | |
pylint.txt | |
# Ignore project files | |
[Bb]uild/ | |
.settings/ | |
.project | |
.pydevproject | |
.conflict | |
# node | |
node_modules/ | |
bower/ | |
# Logs | |
*.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment