github.com/vcilabs/webrpc@v0.5.2-0.20201116131534-162e27b1b33b/_examples/hello-webrpc-with-goschema-ts/webapp/tslint.json (about) 1 { 2 "defaultSeverity": "warning", 3 "linterOptions": { 4 "exclude": [ 5 ] 6 }, 7 "rules": { 8 "class-name": true, 9 "comment-format": [ 10 false, 11 "check-space" 12 ], 13 "curly": false, 14 "indent": [ 15 true, 16 "spaces" 17 ], 18 "interface-name": false, 19 "jsdoc-format": true, 20 "no-consecutive-blank-lines": false, 21 "no-debugger": true, 22 "no-duplicate-variable": true, 23 "no-eval": true, 24 "no-internal-module": true, 25 "no-trailing-whitespace": false, 26 "no-shadowed-variable": false, 27 "no-switch-case-fall-through": true, 28 "no-unused-expression": false, 29 "no-use-before-declare": false, 30 "no-var-keyword": true, 31 "one-line": [ 32 true, 33 "check-open-brace", 34 "check-whitespace", 35 "check-catch" 36 ], 37 "quotemark": [ 38 true, 39 "single", 40 "jsx-double" 41 ], 42 "semicolon": [true, "never"], 43 "trailing-comma": [ 44 true, 45 { 46 "multiline": "never", 47 "singleline": "never" 48 } 49 ], 50 "triple-equals": [ 51 true, 52 "allow-null-check" 53 ], 54 "typedef-whitespace": [ 55 true, 56 { 57 "call-signature": "nospace", 58 "index-signature": "nospace", 59 "parameter": "nospace", 60 "property-declaration": "nospace", 61 "variable-declaration": "nospace" 62 } 63 ], 64 "variable-name": [ 65 true, 66 "ban-keywords" 67 ], 68 "whitespace": [ 69 true, 70 "check-branch", 71 "check-decl", 72 "check-separator", 73 "check-type" 74 ] 75 } 76 }