Skip to content

Commit

Permalink
Merge pull request #5 from bitholla/develop
Browse files Browse the repository at this point in the history
Added getConstant function and updated the unit tests
  • Loading branch information
abeikverdi authored Feb 8, 2019
2 parents 59f6139 + 1eeeba6 commit 3ab603e
Show file tree
Hide file tree
Showing 11 changed files with 2,134 additions and 2,798 deletions.
17 changes: 17 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"no-console": 0
}
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,6 @@ typings/

# next.js build output
.next

# PhpStrom Project Files #
.idea/
1 change: 1 addition & 0 deletions .prettierignore.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
8 changes: 8 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"tabWidth": 2,
"useTabs": true,
"semi": true,
"singleQuote": true,
"bracketSpacing": true,
"arrowParens": "always"
}
Loading

0 comments on commit 3ab603e

Please sign in to comment.