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> Updated application flow Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> Add grpc dependency in package.json Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> Update CI pipelines to run new app Updated application description in package.json Fixed chaincode name Code Refactor 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"
|
|
]
|
|
}
|
|
]
|
|
} |