Skip to content
This repository was archived by the owner on Sep 8, 2018. It is now read-only.

Commit c34925c

Browse files
committed
Get routes working for frontend, add eslint
1 parent 174d4c8 commit c34925c

20 files changed

+13345
-378
lines changed

.eslintrc.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"extends": [
3+
"standard",
4+
"plugin:react/recommended"
5+
],
6+
"rules": {
7+
"react/prefer-stateless-function": 0
8+
},
9+
"env": {
10+
"es6": true
11+
},
12+
"parserOptions": {
13+
"ecmaFeatures": {
14+
"jsx": true,
15+
"modules": true
16+
}
17+
},
18+
"plugins": [
19+
"react"
20+
],
21+
"globals": {
22+
"fetch": true
23+
}
24+
}

0 commit comments

Comments
 (0)