mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> Added Fabric gateway and removed ca,tslint dependencies Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> eslint migration Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> Added gitignore Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> Transaction Flow Changes Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> Removed serviceClient import,removed outer try catch from main Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> updated fabric-gateway version Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> transaction verification flow change Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> Improved main function readability Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> extra comments Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> Updated fabric-gateway to latest Signed-off-by: sapthasurendran <saptha.surendran@ibm.com>
45 lines
No EOL
831 B
JSON
45 lines
No EOL
831 B
JSON
{
|
|
"env": {
|
|
"node": true,
|
|
"es6": true
|
|
},
|
|
"root": true,
|
|
"ignorePatterns": [
|
|
"dist/"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended"
|
|
],
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
4
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"single"
|
|
]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"**/*.ts"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"impliedStrict": true
|
|
}
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
]
|
|
}
|
|
]
|
|
} |