Skip to content

Commit ac2551f

Browse files
first commit
0 parents  commit ac2551f

File tree

13 files changed

+3092
-0
lines changed

13 files changed

+3092
-0
lines changed

.babelrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"presets": [
3+
["es2015", {"modules": false}],
4+
"stage-2",
5+
"react"
6+
],
7+
"plugins": [
8+
"react-hot-loader/babel"
9+
]
10+
}

.eslintrc

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
parser: "babel-eslint",
3+
"plugins": [
4+
"react"
5+
],
6+
"env": {
7+
"es6": true,
8+
"node": true,
9+
"browser": true
10+
},
11+
"rules": {
12+
"space-in-parens": [ 1, "always" ],
13+
"no-console": 0,
14+
"no-unused-vars": 1,
15+
"object-curly-spacing": [ 1, "always" ],
16+
"array-bracket-spacing": [ 1, "always" ],
17+
"comma-spacing": [2, { "before": false, "after": true }],
18+
"computed-property-spacing": [ 1, "always" ]
19+
},
20+
"extends": [ "eslint:recommended", "plugin:react/recommended" ],
21+
"globals": {
22+
"document": true,
23+
"window": true,
24+
"module": true
25+
}
26+
}

.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)