Skip to content

Commit 30a1910

Browse files
author
Andrew Adamson
committed
working version
0 parents  commit 30a1910

35 files changed

+16512
-0
lines changed

.eslintrc.json

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"commonjs": true,
5+
"es6": true,
6+
"node": true
7+
},
8+
"extends": [
9+
"eslint:recommended",
10+
"plugin:react/recommended"
11+
],
12+
"parser": "babel-eslint",
13+
"parserOptions": {
14+
"ecmaVersion": 2018,
15+
"ecmaFeatures": {
16+
"jsx": true
17+
},
18+
"sourceType": "module"
19+
},
20+
"plugins": [
21+
"react"
22+
],
23+
"rules": {
24+
"quotes":["error", "single"],
25+
"no-const-assign": "warn",
26+
"no-this-before-super": "error",
27+
"no-undef": "warn",
28+
"no-unreachable": "error",
29+
"no-unused-vars": "warn",
30+
"constructor-super": "warn",
31+
"require-await": "error",
32+
"valid-typeof": "warn",
33+
"semi": ["error", "always"],
34+
"no-trailing-spaces": "error"
35+
}
36+
}

.gitignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# See https://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.local
15+
.env.development.local
16+
.env.test.local
17+
.env.production.local
18+
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*

README.md

+2,444
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)