Browse Source

git(gitignore): add gitignore

Van Nghia Vo 1 year ago
commit
d217b50d48
1 changed files with 310 additions and 0 deletions
  1. 310
    0
      .gitignore

+ 310
- 0
.gitignore View File

@@ -0,0 +1,310 @@
1
+### JupyterNotebooks ###
2
+# gitignore template for Jupyter Notebooks
3
+# website: http://jupyter.org/
4
+
5
+.ipynb_checkpoints
6
+*/.ipynb_checkpoints/*
7
+
8
+# IPython
9
+profile_default/
10
+ipython_config.py
11
+
12
+# Remove previous ipynb_checkpoints
13
+#   git rm -r .ipynb_checkpoints/
14
+
15
+### Linux ###
16
+*~
17
+
18
+# temporary files which can be created if a process still has a handle open of a deleted file
19
+.fuse_hidden*
20
+
21
+# KDE directory preferences
22
+.directory
23
+
24
+# Linux trash folder which might appear on any partition or disk
25
+.Trash-*
26
+
27
+# .nfs files are created when an open file is removed but is still being accessed
28
+.nfs*
29
+
30
+### macOS ###
31
+# General
32
+.DS_Store
33
+.AppleDouble
34
+.LSOverride
35
+
36
+# Icon must end with two \r
37
+Icon
38
+
39
+
40
+# Thumbnails
41
+._*
42
+
43
+# Files that might appear in the root of a volume
44
+.DocumentRevisions-V100
45
+.fseventsd
46
+.Spotlight-V100
47
+.TemporaryItems
48
+.Trashes
49
+.VolumeIcon.icns
50
+.com.apple.timemachine.donotpresent
51
+
52
+# Directories potentially created on remote AFP share
53
+.AppleDB
54
+.AppleDesktop
55
+Network Trash Folder
56
+Temporary Items
57
+.apdisk
58
+
59
+### Python ###
60
+# Byte-compiled / optimized / DLL files
61
+__pycache__/
62
+*.py[cod]
63
+*$py.class
64
+
65
+# C extensions
66
+*.so
67
+
68
+# Distribution / packaging
69
+.Python
70
+build/
71
+develop-eggs/
72
+dist/
73
+downloads/
74
+eggs/
75
+.eggs/
76
+lib/
77
+lib64/
78
+parts/
79
+sdist/
80
+var/
81
+wheels/
82
+share/python-wheels/
83
+*.egg-info/
84
+.installed.cfg
85
+*.egg
86
+MANIFEST
87
+
88
+# PyInstaller
89
+#  Usually these files are written by a python script from a template
90
+#  before PyInstaller builds the exe, so as to inject date/other infos into it.
91
+*.manifest
92
+*.spec
93
+
94
+# Installer logs
95
+pip-log.txt
96
+pip-delete-this-directory.txt
97
+
98
+# Unit test / coverage reports
99
+htmlcov/
100
+.tox/
101
+.nox/
102
+.coverage
103
+.coverage.*
104
+.cache
105
+nosetests.xml
106
+coverage.xml
107
+*.cover
108
+*.py,cover
109
+.hypothesis/
110
+.pytest_cache/
111
+cover/
112
+
113
+# Translations
114
+*.mo
115
+*.pot
116
+
117
+# Django stuff:
118
+*.log
119
+local_settings.py
120
+db.sqlite3
121
+db.sqlite3-journal
122
+
123
+# Flask stuff:
124
+instance/
125
+.webassets-cache
126
+
127
+# Scrapy stuff:
128
+.scrapy
129
+
130
+# Sphinx documentation
131
+docs/_build/
132
+
133
+# PyBuilder
134
+.pybuilder/
135
+target/
136
+
137
+# Jupyter Notebook
138
+
139
+# IPython
140
+
141
+# pyenv
142
+#   For a library or package, you might want to ignore these files since the code is
143
+#   intended to run in multiple environments; otherwise, check them in:
144
+# .python-version
145
+
146
+# pipenv
147
+#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
148
+#   However, in case of collaboration, if having platform-specific dependencies or dependencies
149
+#   having no cross-platform support, pipenv may install dependencies that don't work, or not
150
+#   install all needed dependencies.
151
+#Pipfile.lock
152
+
153
+# poetry
154
+#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
155
+#   This is especially recommended for binary packages to ensure reproducibility, and is more
156
+#   commonly ignored for libraries.
157
+#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
158
+#poetry.lock
159
+
160
+# PEP 582; used by e.g. github.com/David-OConnor/pyflow
161
+__pypackages__/
162
+
163
+# Celery stuff
164
+celerybeat-schedule
165
+celerybeat.pid
166
+
167
+# SageMath parsed files
168
+*.sage.py
169
+
170
+# Environments
171
+.env
172
+.venv
173
+env/
174
+venv/
175
+ENV/
176
+env.bak/
177
+venv.bak/
178
+
179
+# Spyder project settings
180
+.spyderproject
181
+.spyproject
182
+
183
+# Rope project settings
184
+.ropeproject
185
+
186
+# mkdocs documentation
187
+/site
188
+
189
+# mypy
190
+.mypy_cache/
191
+.dmypy.json
192
+dmypy.json
193
+
194
+# Pyre type checker
195
+.pyre/
196
+
197
+# pytype static type analyzer
198
+.pytype/
199
+
200
+# Cython debug symbols
201
+cython_debug/
202
+
203
+# PyCharm
204
+#  JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
205
+#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
206
+#  and can be added to the global gitignore or merged into this file.  For a more nuclear
207
+#  option (not recommended) you can uncomment the following to ignore the entire idea folder.
208
+#.idea/
209
+
210
+### R ###
211
+# History files
212
+.Rhistory
213
+.Rapp.history
214
+
215
+# Session Data files
216
+.RData
217
+.RDataTmp
218
+
219
+# User-specific files
220
+.Ruserdata
221
+
222
+# Example code in package build process
223
+*-Ex.R
224
+
225
+# Output files from R CMD build
226
+/*.tar.gz
227
+
228
+# Output files from R CMD check
229
+/*.Rcheck/
230
+
231
+# RStudio files
232
+.Rproj.user/
233
+
234
+# produced vignettes
235
+vignettes/*.html
236
+vignettes/*.pdf
237
+
238
+# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
239
+.httr-oauth
240
+
241
+# knitr and R markdown default cache directories
242
+*_cache/
243
+/cache/
244
+
245
+# Temporary files created by R markdown
246
+*.utf8.md
247
+*.knit.md
248
+
249
+# R Environment Variables
250
+.Renviron
251
+
252
+# pkgdown site
253
+docs/
254
+
255
+# translation temp files
256
+po/*~
257
+
258
+# RStudio Connect folder
259
+rsconnect/
260
+
261
+### R.Bookdown Stack ###
262
+# R package: bookdown caching files
263
+/*_files/
264
+
265
+### VisualStudioCode ###
266
+.vscode/*
267
+!.vscode/settings.json
268
+!.vscode/tasks.json
269
+!.vscode/launch.json
270
+!.vscode/extensions.json
271
+!.vscode/*.code-snippets
272
+
273
+# Local History for Visual Studio Code
274
+.history/
275
+
276
+# Built Visual Studio Code Extensions
277
+*.vsix
278
+
279
+### VisualStudioCode Patch ###
280
+# Ignore all local history of files
281
+.history
282
+.ionide
283
+
284
+# Support for Project snippet scope
285
+
286
+### Windows ###
287
+# Windows thumbnail cache files
288
+Thumbs.db
289
+Thumbs.db:encryptable
290
+ehthumbs.db
291
+ehthumbs_vista.db
292
+
293
+# Dump file
294
+*.stackdump
295
+
296
+# Folder config file
297
+[Dd]esktop.ini
298
+
299
+# Recycle Bin used on file shares
300
+$RECYCLE.BIN/
301
+
302
+# Windows Installer files
303
+*.cab
304
+*.msi
305
+*.msix
306
+*.msm
307
+*.msp
308
+
309
+# Windows shortcuts
310
+*.lnk

Loading…
Cancel
Save