|
| 1 | +{ |
| 2 | + "defaultSeverity": "error", |
| 3 | + "extends": [ |
| 4 | + "tslint:recommended" |
| 5 | + ], |
| 6 | + "jsRules": {}, |
| 7 | + "rules": { |
| 8 | + "arrow-parens": false, |
| 9 | + "arrow-return-shorthand": true, |
| 10 | + "callable-types": true, |
| 11 | + "class-name": true, |
| 12 | + "comment-format": [ |
| 13 | + true, |
| 14 | + "check-space" |
| 15 | + ], |
| 16 | + "curly": true, |
| 17 | + "deprecation": { |
| 18 | + "severity": "warn" |
| 19 | + }, |
| 20 | + "eofline": true, |
| 21 | + "forin": true, |
| 22 | + "import-blacklist": [ |
| 23 | + true, |
| 24 | + "rxjs/Rx" |
| 25 | + ], |
| 26 | + "import-spacing": true, |
| 27 | + "indent": [ |
| 28 | + true, |
| 29 | + "spaces" |
| 30 | + ], |
| 31 | + "interface-over-type-literal": false, |
| 32 | + "label-position": true, |
| 33 | + "max-line-length": [ |
| 34 | + true, |
| 35 | + 140 |
| 36 | + ], |
| 37 | + "member-access": false, |
| 38 | + "member-ordering": [ |
| 39 | + true, |
| 40 | + { |
| 41 | + "order": [ |
| 42 | + "static-field", |
| 43 | + "instance-field", |
| 44 | + "static-method", |
| 45 | + "instance-method" |
| 46 | + ] |
| 47 | + } |
| 48 | + ], |
| 49 | + "no-arg": true, |
| 50 | + "no-bitwise": true, |
| 51 | + "no-console": [ |
| 52 | + true, |
| 53 | + "debug", |
| 54 | + "info", |
| 55 | + "time", |
| 56 | + "timeEnd", |
| 57 | + "trace" |
| 58 | + ], |
| 59 | + "no-construct": true, |
| 60 | + "no-debugger": true, |
| 61 | + "no-duplicate-super": true, |
| 62 | + "no-empty": false, |
| 63 | + "no-empty-interface": true, |
| 64 | + "no-eval": true, |
| 65 | + "no-inferrable-types": [ |
| 66 | + true, |
| 67 | + "ignore-params" |
| 68 | + ], |
| 69 | + "no-misused-new": true, |
| 70 | + "no-non-null-assertion": true, |
| 71 | + "no-redundant-jsdoc": true, |
| 72 | + "no-shadowed-variable": true, |
| 73 | + "no-string-literal": false, |
| 74 | + "no-string-throw": true, |
| 75 | + "no-switch-case-fall-through": true, |
| 76 | + "no-trailing-whitespace": true, |
| 77 | + "no-unnecessary-initializer": true, |
| 78 | + "no-unused-expression": false, |
| 79 | + "no-use-before-declare": true, |
| 80 | + "no-var-keyword": true, |
| 81 | + "object-literal-sort-keys": false, |
| 82 | + "one-line": [ |
| 83 | + true, |
| 84 | + "check-open-brace", |
| 85 | + "check-catch", |
| 86 | + "check-else", |
| 87 | + "check-whitespace" |
| 88 | + ], |
| 89 | + "prefer-const": true, |
| 90 | + "quotemark": [ |
| 91 | + true, |
| 92 | + "single" |
| 93 | + ], |
| 94 | + "radix": true, |
| 95 | + "semicolon": [ |
| 96 | + true, |
| 97 | + "never" |
| 98 | + ], |
| 99 | + "triple-equals": [ |
| 100 | + true, |
| 101 | + "allow-null-check" |
| 102 | + ], |
| 103 | + "typedef-whitespace": [ |
| 104 | + true, |
| 105 | + { |
| 106 | + "call-signature": "nospace", |
| 107 | + "index-signature": "nospace", |
| 108 | + "parameter": "nospace", |
| 109 | + "property-declaration": "nospace", |
| 110 | + "variable-declaration": "nospace" |
| 111 | + } |
| 112 | + ], |
| 113 | + "unified-signatures": true, |
| 114 | + "variable-name": false, |
| 115 | + "whitespace": [ |
| 116 | + true, |
| 117 | + "check-branch", |
| 118 | + "check-decl", |
| 119 | + "check-operator", |
| 120 | + "check-separator", |
| 121 | + "check-type" |
| 122 | + ] |
| 123 | + }, |
| 124 | + "rulesDirectory": [] |
| 125 | +} |
0 commit comments