Skip to content

Commit

Permalink
Initial export from anb
Browse files Browse the repository at this point in the history
  • Loading branch information
janb87 committed Feb 1, 2018
0 parents commit 137eccb
Show file tree
Hide file tree
Showing 20 changed files with 5,028 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true


[*]

# change these settings to your own preference
indent_style = space
indent_size = 4

# we recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[*.json]
indent_style = space
indent_size = 2
40 changes: 40 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"root": true,
"env": {
"browser": true,
"es6": true
},
"parserOptions": {
"sourceType": "module",
"modules": true,
"ecmaFeatures": {
"modules": true
}
},
"extends": "airbnb-base",
"rules": {
"arrow-body-style": "off",
"arrow-parens": ["error", "always"],
"comma-dangle": ["error", "never"],
"default-case": "off",
"indent": ["error", 4, { "SwitchCase": 1 }],
"max-len": ["error", 120, {"ignoreComments": true, "ignoreTemplateLiterals": true}],
"no-console": 0,
"no-trailing-spaces": ["error"],
"linebreak-style": ["error", "unix"],
"object-curly-spacing": ["error", "never"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"space-before-blocks": ["error", "always"],
"space-before-function-paren": ["error", {
"anonymous": "never",
"named": "never",
"asyncArrow": "always"
}],
"import/prefer-default-export": "off",
"func-names": "off",
"no-restricted-syntax": "off",
"no-await-in-loop": "off"
},
"globals": {"module": true}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.vscode
node_modules
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Hyperledger Fabric Client utils

This repository consists out of a set of utilities functions which can be used to interact with chaincode on a Fabric blockchain network.

Loading

0 comments on commit 137eccb

Please sign in to comment.