Pokemon-Terminal/.gitignore

154 lines
2.1 KiB
Text
Raw Normal View History

2017-04-18 23:22:59 +00:00
# Created by https://www.gitignore.io/api/osx,python,pycharm
### OSX ###
*.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
### Python ###
# Byte-compiled / optimized / DLL files
2017-04-18 19:15:08 +00:00
__pycache__/
2017-04-18 23:22:59 +00:00
*.py[cod]
*$py.class
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# C extensions
*.so
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# 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
.hypothesis/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
2017-04-18 18:04:54 +00:00
2017-04-18 23:22:59 +00:00
# Flask stuff:
instance/
.webassets-cache
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# Scrapy stuff:
.scrapy
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# Sphinx documentation
docs/_build/
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# PyBuilder
target/
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# Jupyter Notebook
.ipynb_checkpoints
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# pyenv
.python-version
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# celery beat schedule file
celerybeat-schedule
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# dotenv
.env
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# virtualenv
.venv/
venv/
ENV/
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# Spyder project settings
.spyderproject
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# Rope project settings
.ropeproject
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
### PyCharm ###
.idea/
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
## File-based project format:
*.iws
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
## Plugin-specific files:
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# IntelliJ
/out/
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# mpeltonen/sbt-idea plugin
.idea_modules/
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# JIRA plugin
atlassian-ide-plugin.xml
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
### PyCharm Patch ###
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# *.iml
# modules.xml
# .idea/misc.xml
# *.ipr
2017-04-18 19:15:08 +00:00
2017-04-18 23:22:59 +00:00
# End of https://www.gitignore.io/api/osx,python,pycharm