Skip to content

Commit c5510b9

Browse files
Begin work on number guessing game from cse231 and ignore sublime files
1 parent 18d568f commit c5510b9

File tree

8 files changed

+299
-1074
lines changed

8 files changed

+299
-1074
lines changed

.gitignore

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
### Python template
2+
# Byte-compiled / optimized / DLL files
3+
__pycache__/
4+
*.py[cod]
5+
*$py.class
6+
7+
# C extensions
8+
*.so
9+
10+
# Distribution / packaging
11+
.Python
12+
env/
13+
build/
14+
develop-eggs/
15+
dist/
16+
downloads/
17+
eggs/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*,cover
47+
.hypothesis/
48+
49+
# Translations
50+
*.mo
51+
*.pot
52+
53+
# Django stuff:
54+
*.log
55+
local_settings.py
56+
57+
# Flask instance folder
58+
instance/
59+
60+
# Scrapy stuff:
61+
.scrapy
62+
63+
# Sphinx documentation
64+
docs/_build/
65+
66+
# PyBuilder
67+
target/
68+
69+
# IPython Notebook
70+
.ipynb_checkpoints
71+
72+
# pyenv
73+
.python-version
74+
75+
# celery beat schedule file
76+
celerybeat-schedule
77+
78+
# dotenv
79+
.env
80+
81+
# virtualenv
82+
venv/
83+
ENV/
84+
85+
# Spyder project settings
86+
.spyderproject
87+
88+
# Rope project settings
89+
.ropeproject
90+
### JetBrains template
91+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
92+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
93+
94+
# User-specific stuff:
95+
.idea/workspace.xml
96+
.idea/tasks.xml
97+
.idea/dictionaries
98+
.idea/vcs.xml
99+
.idea/jsLibraryMappings.xml
100+
101+
# Sensitive or high-churn files:
102+
.idea/dataSources.ids
103+
.idea/dataSources.xml
104+
.idea/dataSources.local.xml
105+
.idea/sqlDataSources.xml
106+
.idea/dynamic.xml
107+
.idea/uiDesigner.xml
108+
109+
# Gradle:
110+
.idea/gradle.xml
111+
.idea/libraries
112+
113+
# Mongo Explorer plugin:
114+
.idea/mongoSettings.xml
115+
116+
## File-based project format:
117+
*.iws
118+
119+
## Plugin-specific files:
120+
121+
# IntelliJ
122+
/out/
123+
124+
# mpeltonen/sbt-idea plugin
125+
.idea_modules/
126+
127+
# JIRA plugin
128+
atlassian-ide-plugin.xml
129+
130+
# Crashlytics plugin (for Android Studio and IntelliJ)
131+
com_crashlytics_export_strings.xml
132+
crashlytics.properties
133+
crashlytics-build.properties
134+
fabric.properties
135+
136+
# Created by .ignore support plugin (hsz.mobi)
137+
138+
# Sublime
139+
*.sublime-project
140+
*.sublime-workspace

0 commit comments

Comments
 (0)