Permalink
Newer
Older
100644 144 lines (117 sloc) 1.3 KB
Oct 14, 2013 @bianjiang initial
1 # Created by http://gitignore.io
2
Oct 18, 2013 @bianjiang exclude sensitive information
3 config.json
4
Oct 14, 2013 @bianjiang initial
5 ### Python ###
6 *.py[cod]
7
8 # C extensions
9 *.so
10
11 # Packages
12 *.egg
13 *.egg-info
14 dist
15 build
16 eggs
17 parts
18 bin
19 var
20 sdist
21 develop-eggs
22 .installed.cfg
23 lib
24 lib64
25 __pycache__
26
27 # Installer logs
28 pip-log.txt
29
30 # Unit test / coverage reports
31 .coverage
32 .tox
33 nosetests.xml
34
35 # Translations
36 *.mo
37
38 # Mr Developer
39 .mr.developer.cfg
40 .project
41 .pydevproject
42
43 # Rope
44 .ropeproject
45
46
47 ### Windows ###
48 # Windows image file caches
49 Thumbs.db
50 ehthumbs.db
51
52 # Folder config file
53 Desktop.ini
54
55 # Recycle Bin used on file shares
56 $RECYCLE.BIN/
57
58 ### OSX ###
59 .DS_Store
60 .AppleDouble
61 .LSOverride
62 Icon
63
64
65 # Thumbnails
66 ._*
67
68 # Files that might appear on external disk
69 .Spotlight-V100
70 .Trashes
71
72 ### Linux ###
73 .*
74 !.gitignore
75 !.git*
76 *~
77
78
79 ### SublimeText ###
80 # SublimeText project files
81 *.sublime-workspace
82
83 ### Eclipse ###
84 *.pydevproject
85 .project
86 .metadata
87 bin/**
88 tmp/**
89 tmp/**/*
90 *.tmp
91 *.bak
92 *.swp
93 *~.nib
94 local.properties
95 .classpath
96 .settings/
97 .loadpath
98
99 # External tool builders
100 .externalToolBuilders/
101
102 # Locally stored "Eclipse launch configurations"
103 *.launch
104
105 # CDT-specific
106 .cproject
107
108 # PDT-specific
109 .buildpath
110
111 ### LaTeX ###
112 *.acn
113 *.acr
114 *.alg
115 *.aux
116 *.bbl
117 *.blg
118 *.dvi
119 *.fdb_latexmk
120 *.glg
121 *.glo
122 *.gls
123 *.idx
124 *.ilg
125 *.ind
126 *.ist
127 *.lof
128 *.log
129 *.lot
130 *.maf
131 *.mtc
132 *.mtc0
133 *.nav
134 *.nlo
135 *.out
136 *.pdfsync
137 *.ps
138 *.snm
139 *.synctex.gz
140 *.toc
141 *.vrb
142 *.xdy
143 *.tdo