Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit f56f28c

Browse files
committed
Initial commit
1 parent d9c4cbe commit f56f28c

File tree

152 files changed

+8358
-6632
lines changed

Some content is hidden

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

152 files changed

+8358
-6632
lines changed

.babelrc

-12
This file was deleted.

.eslintignore

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
node_modules
2-
dist
3-
release
4-
main.js
5-
main.js.map
1+
__tests__

.eslintrc

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"plugins": [
3+
"prettier"
4+
],
5+
"parserOptions": {
6+
"ecmaVersion": 2017,
7+
"sourceType": "module",
8+
"ecmaFeatures": {
9+
"jsx": true,
10+
"spread": true,
11+
"experimentalObjectRestSpread": true
12+
}
13+
},
14+
globals: {
15+
"__DEV__": true,
16+
"fetch": true,
17+
"Promise": true
18+
},
19+
"env": {
20+
"es6": true,
21+
"node": true
22+
},
23+
"extends": [
24+
"eslint:recommended",
25+
"plugin:react/recommended",
26+
"prettier"
27+
],
28+
"rules": {
29+
"prettier/prettier": ["error", {
30+
"singleQuote": true,
31+
"trailingComma": "es5",
32+
"bracketSpacing": true,
33+
"jsxBracketSameLine": false,
34+
"parser": "babylon"
35+
}],
36+
"no-console": "off"
37+
}
38+
}

.eslintrc.js

-6
This file was deleted.

.gitignore

+21-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,24 @@
1-
*.log
2-
*.DS_Store
3-
node_modules
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
42

5-
# App packaged
6-
dist
7-
release
8-
main.js
9-
main.js.map
3+
# dependencies
4+
/node_modules
105

11-
# Webpack
12-
stats.json
6+
# testing
7+
/coverage
138

14-
test_lnd
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*
22+
23+
package-lock.json
24+
/dist

0 commit comments

Comments
 (0)