Skip to content

Commit

Permalink
implemented main transactions in stellar.js and ethereum.js
Browse files Browse the repository at this point in the history
node project setup - eslint, babel, etc.
  • Loading branch information
Chris Hatch committed Sep 22, 2017
1 parent a3dbedb commit 0fa39a7
Show file tree
Hide file tree
Showing 13 changed files with 10,433 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["env"]
}
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
coverage
18 changes: 18 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 8,
"ecmaFeatures": {
"impliedStrict": true
},
"sourceType": "module"
},
"env": {
"node": true,
"jest": true
},
"rules": {
"no-console": "off",
"no-unused-vars": ["warn"]
}
}
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,8 @@ typings/
# dotenv environment variables file
.env

# coveralls
coverage

# babel transpile destination
lib
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
language: node_js
node_js:
- lts/*
- latest
after_script: 'cat ./coverage/lcov.info | coveralls'
Loading

0 comments on commit 0fa39a7

Please sign in to comment.