1{ 2 "extends": "tslint:recommended", 3 "rules": { 4 "no-var-requires": false, 5 "ordered-imports": [ 6 false 7 ], 8 "quotemark": [ 9 "single" 10 ], 11 "no-console": [ 12 false 13 ], 14 "no-unused-expression": [ 15 "allow-fast-null-checks", 16 "allow-new", 17 "allow-tagged-template" 18 ], 19 "only-arrow-functions": [ 20 false 21 ], 22 "no-conditional-assignment": false, 23 "no-angle-bracket-type-assertion": false, 24 "whitespace": [ 25 "check-branch", 26 "check-decl", 27 "check-module", 28 "check-operator", 29 "check-preblock", 30 "check-separator", 31 "check-type", 32 "check-typecast" 33 ], 34 "member-access": [ 35 "check-constructor", 36 "no-public" 37 ], 38 "object-literal-sort-keys": [ 39 false 40 ], 41 "max-classes-per-file": [ 42 false 43 ], 44 "no-trailing-whitespace": false, 45 "arrow-parens": false, 46 "no-empty": false, 47 "no-shadowed-variable": true, 48 "no-string-literal": false, 49 "trailing-comma": [ 50 false 51 ] 52 } 53}