139 lines
1.3 KiB
Plaintext
139 lines
1.3 KiB
Plaintext
|
# use glob syntax
|
||
|
syntax: glob
|
||
|
|
||
|
|
||
|
# Packages #
|
||
|
############
|
||
|
# it's better to unpack these files and commit the raw source
|
||
|
# git has its own built in compression methods
|
||
|
*.7z
|
||
|
*.dmg
|
||
|
*.gz
|
||
|
*.iso
|
||
|
*.jar
|
||
|
*.rar
|
||
|
*.tar
|
||
|
*.zip
|
||
|
*.apk
|
||
|
*.ipa
|
||
|
*.mgl
|
||
|
|
||
|
# Logs and databases #
|
||
|
######################
|
||
|
*.log
|
||
|
*.sql
|
||
|
*.sqlite
|
||
|
|
||
|
# OS generated files #
|
||
|
######################
|
||
|
._.DS_Store
|
||
|
.DS_Store
|
||
|
.DS_Store?
|
||
|
._*
|
||
|
.Spotlight-V100
|
||
|
.Trashes
|
||
|
Icon?
|
||
|
ehthumbs.db
|
||
|
Thumbs.db
|
||
|
|
||
|
#Ignore files build by Visual Studio
|
||
|
# Compiled source #
|
||
|
###################
|
||
|
*.com
|
||
|
*.class
|
||
|
*.dll
|
||
|
*.o
|
||
|
*.so
|
||
|
*.obj
|
||
|
*.exe
|
||
|
*.pdb
|
||
|
*.user
|
||
|
*.aps
|
||
|
*.pch
|
||
|
*.vspscc
|
||
|
*_i.c
|
||
|
*_p.c
|
||
|
*.ncb
|
||
|
*.suo
|
||
|
*.tlb
|
||
|
*.tlh
|
||
|
*.bak
|
||
|
*.cache
|
||
|
*.ilk
|
||
|
|
||
|
[Bb]uild[Ll]og.*
|
||
|
*.[Pp]ublish.xml
|
||
|
*.lib
|
||
|
*.sbr
|
||
|
*.scc
|
||
|
*.sdf
|
||
|
*.opensdf
|
||
|
[Bb]in
|
||
|
[Dd]ebug*/
|
||
|
obj/
|
||
|
[Rr]elease*/
|
||
|
_ReSharper*/
|
||
|
[Tt]est[Rr]esult*
|
||
|
ipch/
|
||
|
doc/
|
||
|
moglue/settings/__init__.py
|
||
|
########daniel added
|
||
|
.orig
|
||
|
.hg*
|
||
|
*.tmproj
|
||
|
*.ser
|
||
|
#vim
|
||
|
*.swn
|
||
|
*.swo
|
||
|
*.swp
|
||
|
*~
|
||
|
tags
|
||
|
.rvmrc
|
||
|
*.rdb
|
||
|
#vimend
|
||
|
|
||
|
#python
|
||
|
*.py[cod]
|
||
|
#python packages
|
||
|
*.egg
|
||
|
*.egg-info
|
||
|
dist
|
||
|
build
|
||
|
eggs
|
||
|
parts
|
||
|
bin
|
||
|
var
|
||
|
sdist
|
||
|
develop-eggs
|
||
|
.installed.cfg
|
||
|
lib
|
||
|
lib64
|
||
|
MANIFEST
|
||
|
|
||
|
# Installer logs
|
||
|
pip-log.txt
|
||
|
|
||
|
# Unit test / coverage reports
|
||
|
.coverage
|
||
|
.tox
|
||
|
nosetests.xml
|
||
|
|
||
|
# Translations
|
||
|
*.mo
|
||
|
|
||
|
# Mr Developer
|
||
|
.mr.developer.cfg
|
||
|
.project
|
||
|
.pydevproject
|
||
|
.idea
|
||
|
|
||
|
#misc
|
||
|
*.pid
|
||
|
|
||
|
|
||
|
|
||
|
/*.iml
|
||
|
/out
|
||
|
/venv
|
||
|
.history
|
||
|
.vscode
|