Skip to content

Commit 3ab603e

Browse files
authored
Merge pull request #5 from bitholla/develop
Added getConstant function and updated the unit tests
2 parents 59f6139 + 1eeeba6 commit 3ab603e

File tree

11 files changed

+2134
-2798
lines changed

11 files changed

+2134
-2798
lines changed

.eslintrc.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"env": {
3+
"es6": true,
4+
"node": true,
5+
"mocha": true
6+
},
7+
"extends": "eslint:recommended",
8+
"parserOptions": {
9+
"ecmaVersion": 2017
10+
},
11+
"rules": {
12+
"linebreak-style": ["error", "unix"],
13+
"quotes": ["error", "single"],
14+
"semi": ["error", "always"],
15+
"no-console": 0
16+
}
17+
}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,6 @@ typings/
5959

6060
# next.js build output
6161
.next
62+
63+
# PhpStrom Project Files #
64+
.idea/

.prettierignore.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

.prettierrc.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"tabWidth": 2,
3+
"useTabs": true,
4+
"semi": true,
5+
"singleQuote": true,
6+
"bracketSpacing": true,
7+
"arrowParens": "always"
8+
}

0 commit comments

Comments
 (0)