Skip to content

Commit 33d1f4c

Browse files
Michael Dyemichaeldye
authored andcommitted
init
0 parents  commit 33d1f4c

File tree

112 files changed

+45352
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+45352
-0
lines changed

.eslintrc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"parser": "babel-eslint",
3+
"env": {
4+
"browser": true,
5+
"node": true
6+
},
7+
"settings": {
8+
"ecmascript": 6,
9+
"jsx": true
10+
},
11+
"plugins": [
12+
"react"
13+
],
14+
"rules": {
15+
"strict": 0,
16+
"quotes": 0,
17+
"no-unused-vars": 0,
18+
"camelcase": 0,
19+
"no-underscore-dangle": 0
20+
}
21+
}

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
node_modules
5+
6+
# testing
7+
coverage
8+
9+
# production
10+
build
11+
12+
# misc
13+
.DS_Store
14+
.env
15+
npm-debug.log

0 commit comments

Comments
 (0)