Skip to content

Commit a27d640

Browse files
committedJan 24, 2021
initial commit
0 parents  commit a27d640

File tree

1 file changed

+334
-0
lines changed

1 file changed

+334
-0
lines changed
 

Diff for: ‎.gitignore

+334
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,334 @@
1+
### https://raw.github.com/github/gitignore/218a941be92679ce67d0484547e3e142b2f5f6f0/Global/VisualStudioCode.gitignore
2+
3+
.vscode/*
4+
!.vscode/settings.json
5+
!.vscode/tasks.json
6+
!.vscode/launch.json
7+
!.vscode/extensions.json
8+
*.code-workspace
9+
10+
# Local History for Visual Studio Code
11+
.history/
12+
13+
14+
### https://raw.github.com/github/gitignore/218a941be92679ce67d0484547e3e142b2f5f6f0/Global/macOS.gitignore
15+
16+
# General
17+
.DS_Store
18+
.AppleDouble
19+
.LSOverride
20+
21+
# Icon must end with two \r
22+
Icon
23+
24+
25+
# Thumbnails
26+
._*
27+
28+
# Files that might appear in the root of a volume
29+
.DocumentRevisions-V100
30+
.fseventsd
31+
.Spotlight-V100
32+
.TemporaryItems
33+
.Trashes
34+
.VolumeIcon.icns
35+
.com.apple.timemachine.donotpresent
36+
37+
# Directories potentially created on remote AFP share
38+
.AppleDB
39+
.AppleDesktop
40+
Network Trash Folder
41+
Temporary Items
42+
.apdisk
43+
44+
45+
### https://raw.github.com/github/gitignore/218a941be92679ce67d0484547e3e142b2f5f6f0/Global/Windows.gitignore
46+
47+
# Windows thumbnail cache files
48+
Thumbs.db
49+
Thumbs.db:encryptable
50+
ehthumbs.db
51+
ehthumbs_vista.db
52+
53+
# Dump file
54+
*.stackdump
55+
56+
# Folder config file
57+
[Dd]esktop.ini
58+
59+
# Recycle Bin used on file shares
60+
$RECYCLE.BIN/
61+
62+
# Windows Installer files
63+
*.cab
64+
*.msi
65+
*.msix
66+
*.msm
67+
*.msp
68+
69+
# Windows shortcuts
70+
*.lnk
71+
72+
73+
### https://raw.github.com/github/gitignore/218a941be92679ce67d0484547e3e142b2f5f6f0/Node.gitignore
74+
75+
# Logs
76+
logs
77+
*.log
78+
npm-debug.log*
79+
yarn-debug.log*
80+
yarn-error.log*
81+
lerna-debug.log*
82+
83+
# Diagnostic reports (https://nodejs.org/api/report.html)
84+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
85+
86+
# Runtime data
87+
pids
88+
*.pid
89+
*.seed
90+
*.pid.lock
91+
92+
# Directory for instrumented libs generated by jscoverage/JSCover
93+
lib-cov
94+
95+
# Coverage directory used by tools like istanbul
96+
coverage
97+
*.lcov
98+
99+
# nyc test coverage
100+
.nyc_output
101+
102+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
103+
.grunt
104+
105+
# Bower dependency directory (https://bower.io/)
106+
bower_components
107+
108+
# node-waf configuration
109+
.lock-wscript
110+
111+
# Compiled binary addons (https://nodejs.org/api/addons.html)
112+
build/Release
113+
114+
# Dependency directories
115+
node_modules/
116+
jspm_packages/
117+
118+
# Snowpack dependency directory (https://snowpack.dev/)
119+
web_modules/
120+
121+
# TypeScript cache
122+
*.tsbuildinfo
123+
124+
# Optional npm cache directory
125+
.npm
126+
127+
# Optional eslint cache
128+
.eslintcache
129+
130+
# Microbundle cache
131+
.rpt2_cache/
132+
.rts2_cache_cjs/
133+
.rts2_cache_es/
134+
.rts2_cache_umd/
135+
136+
# Optional REPL history
137+
.node_repl_history
138+
139+
# Output of 'npm pack'
140+
*.tgz
141+
142+
# Yarn Integrity file
143+
.yarn-integrity
144+
145+
# dotenv environment variables file
146+
.env
147+
.env.test
148+
149+
# parcel-bundler cache (https://parceljs.org/)
150+
.cache
151+
.parcel-cache
152+
153+
# Next.js build output
154+
.next
155+
out
156+
157+
# Nuxt.js build / generate output
158+
.nuxt
159+
dist
160+
161+
# Gatsby files
162+
.cache/
163+
# Comment in the public line in if your project uses Gatsby and not Next.js
164+
# https://nextjs.org/blog/next-9-1#public-directory-support
165+
# public
166+
167+
# vuepress build output
168+
.vuepress/dist
169+
170+
# Serverless directories
171+
.serverless/
172+
173+
# FuseBox cache
174+
.fusebox/
175+
176+
# DynamoDB Local files
177+
.dynamodb/
178+
179+
# TernJS port file
180+
.tern-port
181+
182+
# Stores VSCode versions used for testing VSCode extensions
183+
.vscode-test
184+
185+
# yarn v2
186+
.yarn/cache
187+
.yarn/unplugged
188+
.yarn/build-state.yml
189+
.yarn/install-state.gz
190+
.pnp.*
191+
192+
193+
### https://raw.github.com/github/gitignore/218a941be92679ce67d0484547e3e142b2f5f6f0/Python.gitignore
194+
195+
# Byte-compiled / optimized / DLL files
196+
__pycache__/
197+
*.py[cod]
198+
*$py.class
199+
200+
# C extensions
201+
*.so
202+
203+
# Distribution / packaging
204+
.Python
205+
build/
206+
develop-eggs/
207+
dist/
208+
downloads/
209+
eggs/
210+
.eggs/
211+
lib/
212+
lib64/
213+
parts/
214+
sdist/
215+
var/
216+
wheels/
217+
share/python-wheels/
218+
*.egg-info/
219+
.installed.cfg
220+
*.egg
221+
MANIFEST
222+
223+
# PyInstaller
224+
# Usually these files are written by a python script from a template
225+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
226+
*.manifest
227+
*.spec
228+
229+
# Installer logs
230+
pip-log.txt
231+
pip-delete-this-directory.txt
232+
233+
# Unit test / coverage reports
234+
htmlcov/
235+
.tox/
236+
.nox/
237+
.coverage
238+
.coverage.*
239+
.cache
240+
nosetests.xml
241+
coverage.xml
242+
*.cover
243+
*.py,cover
244+
.hypothesis/
245+
.pytest_cache/
246+
cover/
247+
248+
# Translations
249+
*.mo
250+
*.pot
251+
252+
# Django stuff:
253+
*.log
254+
local_settings.py
255+
db.sqlite3
256+
db.sqlite3-journal
257+
258+
# Flask stuff:
259+
instance/
260+
.webassets-cache
261+
262+
# Scrapy stuff:
263+
.scrapy
264+
265+
# Sphinx documentation
266+
docs/_build/
267+
268+
# PyBuilder
269+
.pybuilder/
270+
target/
271+
272+
# Jupyter Notebook
273+
.ipynb_checkpoints
274+
275+
# IPython
276+
profile_default/
277+
ipython_config.py
278+
279+
# pyenv
280+
# For a library or package, you might want to ignore these files since the code is
281+
# intended to run in multiple environments; otherwise, check them in:
282+
# .python-version
283+
284+
# pipenv
285+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
286+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
287+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
288+
# install all needed dependencies.
289+
#Pipfile.lock
290+
291+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
292+
__pypackages__/
293+
294+
# Celery stuff
295+
celerybeat-schedule
296+
celerybeat.pid
297+
298+
# SageMath parsed files
299+
*.sage.py
300+
301+
# Environments
302+
.env
303+
.venv
304+
env/
305+
venv/
306+
ENV/
307+
env.bak/
308+
venv.bak/
309+
310+
# Spyder project settings
311+
.spyderproject
312+
.spyproject
313+
314+
# Rope project settings
315+
.ropeproject
316+
317+
# mkdocs documentation
318+
/site
319+
320+
# mypy
321+
.mypy_cache/
322+
.dmypy.json
323+
dmypy.json
324+
325+
# Pyre type checker
326+
.pyre/
327+
328+
# pytype static type analyzer
329+
.pytype/
330+
331+
# Cython debug symbols
332+
cython_debug/
333+
334+

0 commit comments

Comments
 (0)
Please sign in to comment.