Skip to content

Commit 678943f

Browse files
committed
Adjust Git ignore
1 parent e1367cb commit 678943f

File tree

1 file changed

+210
-33
lines changed

1 file changed

+210
-33
lines changed

.gitignore

Lines changed: 210 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,184 @@
1+
#################
2+
## bower Package
3+
#################
4+
bower_components/
5+
6+
#################
7+
## NPM Package
8+
#################
9+
node_modules/
10+
11+
#################
12+
## Eclipse
13+
#################
14+
15+
*.pydevproject
16+
.project
17+
.metadata
18+
bin/
19+
tmp/
20+
*.tmp
21+
*.bak
22+
*.swp
23+
*~.nib
24+
local.properties
25+
.classpath
26+
.settings/
27+
.loadpath
28+
29+
# External tool builders
30+
.externalToolBuilders/
31+
32+
# Locally stored "Eclipse launch configurations"
33+
*.launch
34+
35+
# CDT-specific
36+
.cproject
37+
38+
# PDT-specific
39+
.buildpath
40+
41+
42+
#################
43+
## Visual Studio
44+
#################
45+
46+
## Ignore Visual Studio temporary files, build results, and
47+
## files generated by popular Visual Studio add-ons.
48+
49+
# User-specific files
50+
*.suo
51+
*.user
52+
*.sln.docstates
53+
54+
# Build results
55+
56+
[Dd]ebug/
57+
[Rr]elease/
58+
x64/
59+
build/
60+
[Bb]in/
61+
[Oo]bj/
62+
63+
# MSTest test Results
64+
[Tt]est[Rr]esult*/
65+
[Bb]uild[Ll]og.*
66+
67+
*_i.c
68+
*_p.c
69+
*.ilk
70+
*.meta
71+
*.obj
72+
*.pch
73+
*.pdb
74+
*.pgc
75+
*.pgd
76+
*.rsp
77+
*.sbr
78+
*.tlb
79+
*.tli
80+
*.tlh
81+
*.tmp
82+
*.tmp_proj
83+
*.log
84+
*.vspscc
85+
*.vssscc
86+
.builds
87+
*.pidb
88+
*.log
89+
*.scc
90+
91+
# Visual C++ cache files
92+
ipch/
93+
*.aps
94+
*.ncb
95+
*.opensdf
96+
*.sdf
97+
*.cachefile
98+
99+
# Visual Studio profiler
100+
*.psess
101+
*.vsp
102+
*.vspx
103+
104+
# Guidance Automation Toolkit
105+
*.gpState
106+
107+
# ReSharper is a .NET coding add-in
108+
_ReSharper*/
109+
*.[Rr]e[Ss]harper
110+
111+
# TeamCity is a build add-in
112+
_TeamCity*
113+
114+
# DotCover is a Code Coverage Tool
115+
*.dotCover
116+
117+
# NCrunch
118+
*.ncrunch*
119+
.*crunch*.local.xml
120+
121+
# Installshield output folder
122+
[Ee]xpress/
123+
124+
# DocProject is a documentation generator add-in
125+
DocProject/buildhelp/
126+
DocProject/Help/*.HxT
127+
DocProject/Help/*.HxC
128+
DocProject/Help/*.hhc
129+
DocProject/Help/*.hhk
130+
DocProject/Help/*.hhp
131+
DocProject/Help/Html2
132+
DocProject/Help/html
133+
134+
# Click-Once directory
135+
publish/
136+
137+
# Publish Web Output
138+
*.Publish.xml
139+
*.pubxml
140+
141+
# NuGet Packages Directory
142+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
143+
#packages/
144+
145+
# Windows Azure Build Output
146+
csx
147+
*.build.csdef
148+
149+
# Windows Store app package directory
150+
AppPackages/
151+
152+
# Others
153+
sql/
154+
*.Cache
155+
ClientBin/
156+
[Ss]tyle[Cc]op.*
157+
~$*
158+
*~
159+
*.dbmdl
160+
*.[Pp]ublish.xml
161+
*.pfx
162+
*.publishsettings
163+
164+
# RIA/Silverlight projects
165+
Generated_Code/
166+
167+
# Backup & report files from converting an old project file to a newer
168+
# Visual Studio version. Backup files are not needed, because we have git ;-)
169+
_UpgradeReport_Files/
170+
Backup*/
171+
UpgradeLog*.XML
172+
UpgradeLog*.htm
173+
174+
# SQL Server files
175+
App_Data/*.mdf
176+
App_Data/*.ldf
177+
178+
#############
179+
## Windows detritus
180+
#############
181+
1182
# Windows image file caches
2183
Thumbs.db
3184
ehthumbs.db
@@ -8,40 +189,36 @@ Desktop.ini
8189
# Recycle Bin used on file shares
9190
$RECYCLE.BIN/
10191

11-
# Windows Installer files
12-
*.cab
13-
*.msi
14-
*.msm
15-
*.msp
192+
# Mac crap
193+
.DS_Store
194+
16195

17-
# Windows shortcuts
18-
*.lnk
196+
#############
197+
## Python
198+
#############
19199

20-
# =========================
21-
# Operating System Files
22-
# =========================
200+
*.py[co]
23201

24-
# OSX
25-
# =========================
202+
# Packages
203+
*.egg
204+
*.egg-info
205+
build/
206+
eggs/
207+
parts/
208+
var/
209+
sdist/
210+
develop-eggs/
211+
.installed.cfg
26212

27-
.DS_Store
28-
.AppleDouble
29-
.LSOverride
30-
31-
# Thumbnails
32-
._*
33-
34-
# Files that might appear in the root of a volume
35-
.DocumentRevisions-V100
36-
.fseventsd
37-
.Spotlight-V100
38-
.TemporaryItems
39-
.Trashes
40-
.VolumeIcon.icns
41-
42-
# Directories potentially created on remote AFP share
43-
.AppleDB
44-
.AppleDesktop
45-
Network Trash Folder
46-
Temporary Items
47-
.apdisk
213+
# Installer logs
214+
pip-log.txt
215+
216+
# Unit test / coverage reports
217+
.coverage
218+
.tox
219+
220+
#Translations
221+
*.mo
222+
223+
#Mr Developer
224+
.mr.developer.cfg

0 commit comments

Comments
 (0)