Skip to content

Commit 5a68175

Browse files
committed
setting up the directory by languages
1 parent 98765e3 commit 5a68175

File tree

5 files changed

+110
-0
lines changed

5 files changed

+110
-0
lines changed

Go/.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Binaries for programs and plugins
2+
*.exe
3+
*.exe~
4+
*.dll
5+
*.so
6+
*.dylib
7+
8+
# Test binary, build with `go test -c`
9+
*.test
10+
11+
# Output of the go coverage tool, specifically when used with LiteIDE
12+
*.out

JavaScript/.eslintrc

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"rules": {
3+
"quotes": [2, 'single'],
4+
"semi": 2,
5+
"curly": 2,
6+
"camelcase": 0,
7+
"no-unused-vars": 2,
8+
"no-use-before-define": 2,
9+
"no-underscore-dangle": 2,
10+
"strict": 0,
11+
"no-multi-spaces": 2,
12+
"semi-spacing": 2,
13+
"no-shadow": 2
14+
},
15+
16+
"env": {
17+
"browser": true,
18+
"node": true,
19+
"mocha": true
20+
},
21+
"globals": {
22+
"chrome": false
23+
}
24+
}

JavaScript/.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
node_modules
2+
3+
# Logs
4+
logs
5+
*.log
6+
7+
# Mac specific
8+
DS_Store

Python/.gitignore

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
2+
# Created by https://www.gitignore.io/api/python
3+
4+
### Python ###
5+
# Byte-compiled / optimized / DLL files
6+
__pycache__/
7+
*.py[cod]
8+
*$py.class
9+
10+
# C extensions
11+
*.so
12+
13+
# Distribution / packaging
14+
.Python
15+
env/
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
31+
# PyInstaller
32+
# Usually these files are written by a python script from a template
33+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
34+
*.manifest
35+
*.spec
36+
37+
# Installer logs
38+
pip-log.txt
39+
pip-delete-this-directory.txt
40+
41+
# Unit test / coverage reports
42+
htmlcov/
43+
.tox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*,cover
50+
.hypothesis/
51+
52+
# Translations
53+
*.mo
54+
*.pot
55+
56+
# Django stuff:
57+
*.log
58+
59+
# Sphinx documentation
60+
docs/_build/
61+
62+
# PyBuilder
63+
target/

Ruby/.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "CtCI-6th-Edition"]
2+
path = CtCI-6th-Edition
3+
url = [email protected]:careercup/CtCI-6th-Edition.git

0 commit comments

Comments
 (0)