fabric-samples/asset-transfer-basic/application-typescript-hsm/tslint.json
Dave Kelsey 42c7d4a142
New HSM Typescript Sample (#458)
Add a new sample in typescript to show how to use an HSM within a client
node application

Signed-off-by: D <d_kelsey@uk.ibm.com>

Co-authored-by: D <d_kelsey@uk.ibm.com>
2021-07-06 13:39:42 +01:00

24 lines
667 B
JSON

{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"indent": [true, "spaces", 4],
"linebreak-style": [true, "LF"],
"quotemark": [true, "single"],
"semicolon": [true, "always"],
"no-console": false,
"curly": true,
"triple-equals": true,
"no-string-throw": true,
"no-var-keyword": true,
"no-trailing-whitespace": true,
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-sort-keys": false,
"max-line-length": false,
"interface-name":false
},
"rulesDirectory": []
}