fabric-samples/asset-transfer-basic/application-typescript/tslint.json
Chongxin Luo 984307a3b0 Add application-typescript to asset-transfer-basci
Signed-off-by: Chongxin Luo <Chongxin.Luo@ibm.com>
2020-07-02 13:06:44 -04:00

22 lines
592 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"],
"max-line-length": false
},
"rulesDirectory": []
}