Skip to content

Commit 1b1d61c

Browse files
committed
Project scaffolding and step 1 implementation.
1 parent 81492c7 commit 1b1d61c

File tree

8 files changed

+1437
-0
lines changed

8 files changed

+1437
-0
lines changed

Week8/solution/.eslintrc.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true
5+
},
6+
"extends": "eslint:recommended",
7+
"rules": {
8+
"indent": [
9+
"error",
10+
4
11+
],
12+
"linebreak-style": [
13+
"error",
14+
"unix"
15+
],
16+
"quotes": [
17+
"error",
18+
"double"
19+
],
20+
"semi": [
21+
"error",
22+
"always"
23+
]
24+
}
25+
}

Week8/solution/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

0 commit comments

Comments
 (0)