Skip to content

Commit 820d139

Browse files
authored
Merge pull request DhanushNehru#69 from HacDan/repo_cleanup
Removed .DS_Store, updated .gitignore with basic template
2 parents 5a4765a + b196eb8 commit 820d139

File tree

2 files changed

+175
-0
lines changed

2 files changed

+175
-0
lines changed

.DS_Store

-6 KB
Binary file not shown.

.gitignore

+175
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,178 @@
22
# This helps in testing the code while in development environment
33
# These files will not be pushed in github
44
test*
5+
6+
# VSCode
7+
.vscode/*
8+
!.vscode/settings.json
9+
!.vscode/tasks.json
10+
!.vscode/launch.json
11+
!.vscode/extensions.json
12+
*.code-workspace
13+
# Local History for Visual Studio Code
14+
.history/
15+
16+
# Common credential files
17+
**/credentials.json
18+
**/client_secrets.json
19+
**/client_secret.json
20+
*creds*
21+
*.dat
22+
*password*
23+
*.httr-oauth*
24+
25+
# Private Node Modules
26+
node_modules/
27+
creds.js
28+
29+
# Private Files
30+
*.json
31+
*.csv
32+
*.csv.gz
33+
*.tsv
34+
*.tsv.gz
35+
*.xlsx
36+
37+
38+
# Mac/OSX
39+
.DS_Store
40+
41+
42+
# Byte-compiled / optimized / DLL files
43+
__pycache__/
44+
*.py[cod]
45+
*$py.class
46+
47+
# C extensions
48+
*.so
49+
50+
# Distribution / packaging
51+
.Python
52+
build/
53+
develop-eggs/
54+
dist/
55+
downloads/
56+
eggs/
57+
.eggs/
58+
lib/
59+
lib64/
60+
parts/
61+
sdist/
62+
var/
63+
wheels/
64+
share/python-wheels/
65+
*.egg-info/
66+
.installed.cfg
67+
*.egg
68+
MANIFEST
69+
70+
# PyInstaller
71+
# Usually these files are written by a python script from a template
72+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
73+
*.manifest
74+
*.spec
75+
76+
# Installer logs
77+
pip-log.txt
78+
pip-delete-this-directory.txt
79+
80+
# Unit test / coverage reports
81+
htmlcov/
82+
.tox/
83+
.nox/
84+
.coverage
85+
.coverage.*
86+
.cache
87+
nosetests.xml
88+
coverage.xml
89+
*.cover
90+
*.py,cover
91+
.hypothesis/
92+
.pytest_cache/
93+
cover/
94+
95+
# Translations
96+
*.mo
97+
*.pot
98+
99+
# Django stuff:
100+
*.log
101+
local_settings.py
102+
db.sqlite3
103+
db.sqlite3-journal
104+
105+
# Flask stuff:
106+
instance/
107+
.webassets-cache
108+
109+
# Scrapy stuff:
110+
.scrapy
111+
112+
# Sphinx documentation
113+
docs/_build/
114+
115+
# PyBuilder
116+
.pybuilder/
117+
target/
118+
119+
# Jupyter Notebook
120+
.ipynb_checkpoints
121+
122+
# IPython
123+
profile_default/
124+
ipython_config.py
125+
126+
# pyenv
127+
# For a library or package, you might want to ignore these files since the code is
128+
# intended to run in multiple environments; otherwise, check them in:
129+
# .python-version
130+
131+
# pipenv
132+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
133+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
134+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
135+
# install all needed dependencies.
136+
#Pipfile.lock
137+
138+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
139+
__pypackages__/
140+
141+
# Celery stuff
142+
celerybeat-schedule
143+
celerybeat.pid
144+
145+
# SageMath parsed files
146+
*.sage.py
147+
148+
# Environments
149+
.env
150+
.venv
151+
env/
152+
venv/
153+
ENV/
154+
env.bak/
155+
venv.bak/
156+
157+
# Spyder project settings
158+
.spyderproject
159+
.spyproject
160+
161+
# Rope project settings
162+
.ropeproject
163+
164+
# mkdocs documentation
165+
/site
166+
167+
# mypy
168+
.mypy_cache/
169+
.dmypy.json
170+
dmypy.json
171+
172+
# Pyre type checker
173+
.pyre/
174+
175+
# pytype static type analyzer
176+
.pytype/
177+
178+
# Cython debug symbols
179+
cython_debug/

0 commit comments

Comments
 (0)