Skip to content

Commit 506c450

Browse files
committed
cleaning up gitignore, adding DS_Store to file
1 parent 5a68175 commit 506c450

File tree

5 files changed

+140
-86
lines changed

5 files changed

+140
-86
lines changed

.gitignore

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
node_modules
2+
3+
# Logs
4+
logs
5+
*.log
6+
7+
# Mac specific
8+
DS_Store
9+
10+
*.gem
11+
*.rbc
12+
/.config
13+
/coverage/
14+
/InstalledFiles
15+
/pkg/
16+
/spec/reports/
17+
/spec/examples.txt
18+
/test/tmp/
19+
/test/version_tmp/
20+
/tmp/
21+
22+
# Used by dotenv library to load environment variables.
23+
# .env
24+
25+
## Specific to RubyMotion:
26+
.dat*
27+
.repl_history
28+
build/
29+
*.bridgesupport
30+
build-iPhoneOS/
31+
build-iPhoneSimulator/
32+
33+
## Specific to RubyMotion (use of CocoaPods):
34+
#
35+
# We recommend against adding the Pods directory to your .gitignore. However
36+
# you should judge for yourself, the pros and cons are mentioned at:
37+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
38+
#
39+
# vendor/Pods/
40+
41+
## Documentation cache and generated files:
42+
/.yardoc/
43+
/_yardoc/
44+
/doc/
45+
/rdoc/
46+
47+
## Environment normalization:
48+
/.bundle/
49+
/vendor/bundle
50+
/lib/bundler/man/
51+
52+
# for a library or gem, you might want to ignore these files since the code is
53+
# intended to run in multiple environments; otherwise, check them in:
54+
# Gemfile.lock
55+
# .ruby-version
56+
# .ruby-gemset
57+
58+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
59+
.rvmrc
60+
61+
.DS_Store
62+
63+
# Binaries for programs and plugins
64+
*.exe
65+
*.exe~
66+
*.dll
67+
*.so
68+
*.dylib
69+
70+
# Test binary, build with `go test -c`
71+
*.test
72+
73+
# Output of the go coverage tool, specifically when used with LiteIDE
74+
*.out
75+
76+
.DS_Store
77+
78+
79+
# Created by https://www.gitignore.io/api/python
80+
81+
### Python ###
82+
# Byte-compiled / optimized / DLL files
83+
__pycache__/
84+
*.py[cod]
85+
*$py.class
86+
87+
# C extensions
88+
*.so
89+
90+
# Distribution / packaging
91+
.Python
92+
env/
93+
build/
94+
develop-eggs/
95+
dist/
96+
downloads/
97+
eggs/
98+
.eggs/
99+
lib/
100+
lib64/
101+
parts/
102+
sdist/
103+
var/
104+
*.egg-info/
105+
.installed.cfg
106+
*.egg
107+
108+
# PyInstaller
109+
# Usually these files are written by a python script from a template
110+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
111+
*.manifest
112+
*.spec
113+
114+
# Installer logs
115+
pip-log.txt
116+
pip-delete-this-directory.txt
117+
118+
# Unit test / coverage reports
119+
htmlcov/
120+
.tox/
121+
.coverage
122+
.coverage.*
123+
.cache
124+
nosetests.xml
125+
coverage.xml
126+
*,cover
127+
.hypothesis/
128+
129+
# Translations
130+
*.mo
131+
*.pot
132+
133+
# Django stuff:
134+
*.log
135+
136+
# Sphinx documentation
137+
docs/_build/
138+
139+
# PyBuilder
140+
target/

Go/.gitignore

Lines changed: 0 additions & 12 deletions
This file was deleted.

JavaScript/.gitignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

Python/.gitignore

Lines changed: 0 additions & 63 deletions
This file was deleted.

Ruby/.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)