Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
⚗️
  • Loading branch information
Anemy committed Mar 27, 2018
0 parents commit 92ede4d
Show file tree
Hide file tree
Showing 35 changed files with 12,501 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .eslintrc
@@ -0,0 +1,59 @@
{
"plugins": [
"react"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"env": {
"es6": true,
"browser": true,
"node": true,
"mocha": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"rules": {
"strict": [ 2, "safe" ],
"no-debugger": 2,
"brace-style": [
2,
"1tbs",
{ "allowSingleLine": true }
],
"no-trailing-spaces": 2,
"keyword-spacing": 2,
"space-before-function-paren": [
2,
"never"
],
"spaced-comment": [2, "always" ],
"vars-on-top": 2,
"no-undef": 2,
"no-undefined": 2,
"comma-dangle": [ 2, "never" ],
"quotes": [ 2, "single" ],
"semi": [ 2, "always" ],
"guard-for-in": 2,
"no-eval": 2,
"no-with": 2,
"valid-typeof": 2,
"no-unused-vars": 2,
"no-continue": 1,
"no-console": 1,
"no-extra-semi": 1,
"no-unreachable": 1,
"no-unused-expressions": 1,
"max-len": [1, 80, 4],
"react/prefer-es6-class": 1,
"react/prop-types": 0
}
}
23 changes: 23 additions & 0 deletions .gitignore
@@ -0,0 +1,23 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
/node_modules

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

local
32 changes: 32 additions & 0 deletions README.md
@@ -0,0 +1,32 @@
Work in Progress.

## Installation

Install node js from https://nodejs.org/en/download/

```bash
$ # Clone this repo and navigate to the cloned folder.
$ npm install
```

## Development

```bash
$ npm start
$ browser https://localhost:3000
```

## Donate

If you like this project - show your love! ❤️

It will push me to make improvements and more projects like this!

Eth Wallet:
```0x4Daa587303C6929CC5b8f3FdB6F82B177c642eEc```

BTC Wallet:
```1CfnSzzMonCUSfKGeDN2C87vX13hZEcFHJ```


If you'd like to see something added, create an issue or make a PR! 🚀

0 comments on commit 92ede4d

Please sign in to comment.