Skip to content

Commit fff4dd3

Browse files
author
HeroicHitesh
committed
Update .gitignore
1 parent 50cc718 commit fff4dd3

File tree

2 files changed

+117
-0
lines changed

2 files changed

+117
-0
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.gitignore

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,73 @@
1+
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2+
3+
# Created by https://www.toptal.com/developers/gitignore/api/windows,python,macos,linux,go,visualstudiocode
4+
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,python,macos,linux,go,visualstudiocode
5+
6+
### Go ###
7+
# Binaries for programs and plugins
8+
*.exe
9+
*.exe~
10+
*.dll
11+
*.so
12+
*.dylib
13+
14+
# Test binary, built with `go test -c`
15+
*.test
16+
17+
# Output of the go coverage tool, specifically when used with LiteIDE
18+
*.out
19+
20+
# Dependency directories (remove the comment below to include it)
21+
# vendor/
22+
23+
### Go Patch ###
24+
/vendor/
25+
/Godeps/
26+
27+
### Linux ###
28+
*~
29+
30+
# temporary files which can be created if a process still has a handle open of a deleted file
31+
.fuse_hidden*
32+
33+
# KDE directory preferences
34+
.directory
35+
36+
# Linux trash folder which might appear on any partition or disk
37+
.Trash-*
38+
39+
# .nfs files are created when an open file is removed but is still being accessed
40+
.nfs*
41+
42+
### macOS ###
43+
# General
44+
.DS_Store
45+
.AppleDouble
46+
.LSOverride
47+
48+
# Icon must end with two \r
49+
Icon
50+
51+
# Thumbnails
52+
._*
53+
54+
# Files that might appear in the root of a volume
55+
.DocumentRevisions-V100
56+
.fseventsd
57+
.Spotlight-V100
58+
.TemporaryItems
59+
.Trashes
60+
.VolumeIcon.icns
61+
.com.apple.timemachine.donotpresent
62+
63+
# Directories potentially created on remote AFP share
64+
.AppleDB
65+
.AppleDesktop
66+
Network Trash Folder
67+
Temporary Items
68+
.apdisk
69+
70+
### Python ###
171
# Byte-compiled / optimized / DLL files
272
__pycache__/
373
*.py[cod]
@@ -50,6 +120,7 @@ coverage.xml
50120
*.py,cover
51121
.hypothesis/
52122
.pytest_cache/
123+
pytestdebug.log
53124

54125
# Translations
55126
*.mo
@@ -70,6 +141,7 @@ instance/
70141

71142
# Sphinx documentation
72143
docs/_build/
144+
doc/_build/
73145

74146
# PyBuilder
75147
target/
@@ -127,3 +199,48 @@ dmypy.json
127199

128200
# Pyre type checker
129201
.pyre/
202+
203+
# pytype static type analyzer
204+
.pytype/
205+
206+
### VisualStudioCode ###
207+
.vscode/*
208+
!.vscode/settings.json
209+
!.vscode/tasks.json
210+
!.vscode/launch.json
211+
!.vscode/extensions.json
212+
*.code-workspace
213+
214+
### VisualStudioCode Patch ###
215+
# Ignore all local history of files
216+
.history
217+
218+
### Windows ###
219+
# Windows thumbnail cache files
220+
Thumbs.db
221+
Thumbs.db:encryptable
222+
ehthumbs.db
223+
ehthumbs_vista.db
224+
225+
# Dump file
226+
*.stackdump
227+
228+
# Folder config file
229+
[Dd]esktop.ini
230+
231+
# Recycle Bin used on file shares
232+
$RECYCLE.BIN/
233+
234+
# Windows Installer files
235+
*.cab
236+
*.msi
237+
*.msix
238+
*.msm
239+
*.msp
240+
241+
# Windows shortcuts
242+
*.lnk
243+
244+
# End of https://www.toptal.com/developers/gitignore/api/windows,python,macos,linux,go,visualstudiocode
245+
246+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)

0 commit comments

Comments
 (0)